diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-10-16 09:38:32 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-10-16 09:38:32 -0700 |
commit | 8316a8a0274558f7a0f515e04bb13a7cca5762b2 (patch) | |
tree | 7f6978304ce6b8ffb4a57253ca86b519b2148786 | |
parent | b5cbfb4cd12b6499912367f9a1e11c666157acb8 (diff) | |
download | pdfium-8316a8a0274558f7a0f515e04bb13a7cca5762b2.tar.xz |
DEPS include_rules no longer allows core/ -> fpsdfsk/ inclusion.
Adds the following new violations:
ERROR in core/include/fpdfapi/fpdf_parser.h
Illegal include: "public/fpdfview.h"
ERROR in core/include/fpdfapi/fpdf_render.h
Illegal include: "public/fpdf_progressive.h"
ERROR in core/src/fpdfapi/fpdf_parser/fpdf_parser_decode_embeddertest.cpp
Illegal include: "public/fpdfview.h"
BUG=pdfium:217
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1411493002 .
-rw-r--r-- | DEPS | 2 | ||||
-rw-r--r-- | fpdfsdk/DEPS | 2 | ||||
-rw-r--r-- | samples/DEPS | 2 | ||||
-rw-r--r-- | testing/DEPS | 2 |
4 files changed, 6 insertions, 2 deletions
@@ -31,10 +31,8 @@ deps_os = { } include_rules = [ - '+public', '+testing', '+third_party/base', - '+v8', ] hooks = [ diff --git a/fpdfsdk/DEPS b/fpdfsdk/DEPS index 3e7856369b..60f0aca754 100644 --- a/fpdfsdk/DEPS +++ b/fpdfsdk/DEPS @@ -1,4 +1,6 @@ include_rules = [ '+core/include', '+javascript', + '+public', + '+v8', ] diff --git a/samples/DEPS b/samples/DEPS index cf2a702a7e..bbe39d0293 100644 --- a/samples/DEPS +++ b/samples/DEPS @@ -1,4 +1,6 @@ include_rules = [ '+fx_lpng', + '+public', '+third_party/zlib_v128', + '+v8', ]
\ No newline at end of file diff --git a/testing/DEPS b/testing/DEPS index c7267d3b70..76f3117de1 100644 --- a/testing/DEPS +++ b/testing/DEPS @@ -1,4 +1,6 @@ include_rules = [ '+core/include', '+fpdfsdk/include', + '+public', + '+v8', ]
\ No newline at end of file |