diff options
-rw-r--r-- | xfa/DEPS | 5 | ||||
-rw-r--r-- | xfa/fxfa/DEPS | 3 | ||||
-rw-r--r-- | xfa/fxfa/fm2js/DEPS | 3 | ||||
-rw-r--r-- | xfa/fxfa/parser/DEPS | 5 |
4 files changed, 15 insertions, 1 deletions
@@ -1,5 +1,8 @@ include_rules = [ '+core', '+fxbarcode', - '+third_party/bigint' + '+third_party/bigint', + + # xfa/fwl should be standalone. https://crbug.com/pdfium/507 + '-xfa/fwl', ] diff --git a/xfa/fxfa/DEPS b/xfa/fxfa/DEPS index 886ee8e2b7..cd0aa8d4b7 100644 --- a/xfa/fxfa/DEPS +++ b/xfa/fxfa/DEPS @@ -1,3 +1,6 @@ include_rules = [ '+fxjs', + + # xfa/fwl should be standalone. https://crbug.com/pdfium/507 + '+xfa/fwl', ] diff --git a/xfa/fxfa/fm2js/DEPS b/xfa/fxfa/fm2js/DEPS index 2be03524b6..e19a721031 100644 --- a/xfa/fxfa/fm2js/DEPS +++ b/xfa/fxfa/fm2js/DEPS @@ -1,3 +1,6 @@ include_rules = [ '+third_party/icu', + + # xfa/fwl should be standalone. https://crbug.com/pdfium/507 + '-xfa/fwl', ] diff --git a/xfa/fxfa/parser/DEPS b/xfa/fxfa/parser/DEPS new file mode 100644 index 0000000000..22337ef082 --- /dev/null +++ b/xfa/fxfa/parser/DEPS @@ -0,0 +1,5 @@ +include_rules = [ + # xfa/fwl should be standalone. https://crbug.com/pdfium/507 + '-xfa/fwl', +] + |