diff options
author | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-27 02:11:16 +0000 |
---|---|---|
committer | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-27 02:11:16 +0000 |
commit | 7c159822cbcc8043d62e0dcd61cd69a35687bf96 (patch) | |
tree | 6d6fe2b42985e2dc341d733483c71de7f566ac18 /ppapi/native_client | |
parent | 1666bf2e522554aa5fe1410abe1c9007397fa9c9 (diff) | |
download | chromium_src-7c159822cbcc8043d62e0dcd61cd69a35687bf96.zip chromium_src-7c159822cbcc8043d62e0dcd61cd69a35687bf96.tar.gz chromium_src-7c159822cbcc8043d62e0dcd61cd69a35687bf96.tar.bz2 |
Re-enabling checkdeps for most of ppapi + nacl.
Many of the includes / dependencies in ppapi + nacl are badly specified.
This turns on checkdeps for most stuff and makes extra stuff explicit.
BUG=http://code.google.com/p/chromium/issues/detail?id=93520
TEST=checkdeps passes
R=brettw@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10797018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148699 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rw-r--r-- | ppapi/native_client/DEPS | 13 | ||||
-rw-r--r-- | ppapi/native_client/src/shared/ppapi_proxy/DEPS | 13 | ||||
-rw-r--r-- | ppapi/native_client/src/trusted/plugin/DEPS | 6 | ||||
-rw-r--r-- | ppapi/native_client/tests/earth/DEPS | 9 |
4 files changed, 41 insertions, 0 deletions
diff --git a/ppapi/native_client/DEPS b/ppapi/native_client/DEPS new file mode 100644 index 0000000..df76296 --- /dev/null +++ b/ppapi/native_client/DEPS @@ -0,0 +1,13 @@ +include_rules = [ + "+native_client/src/include", + "+native_client/src/shared/platform", + + # TODO(bradnelson): Eliminate these as they are actually incorrectly rooted + # internal references. + "+native_client/src/shared/ppapi_proxy", + "+native_client/tests/ppapi_geturl", + "+native_client/tests/ppapi_test_lib", + "+srpcgen", + "+trusted/srpcgen", + "+untrusted/srpcgen", +] diff --git a/ppapi/native_client/src/shared/ppapi_proxy/DEPS b/ppapi/native_client/src/shared/ppapi_proxy/DEPS new file mode 100644 index 0000000..1b9100d --- /dev/null +++ b/ppapi/native_client/src/shared/ppapi_proxy/DEPS @@ -0,0 +1,13 @@ +include_rules = [ + # TODO(bradnelson): eliminate this as its actually an incorrectly rooted + # internal reference. + "+native_client/src/trusted/plugin", + + "+gpu", + "+native_client/src/shared/imc", + "+native_client/src/shared/srpc", + "+native_client/src/trusted/desc", + "+native_client/src/trusted/service_runtime/include/machine", + "+native_client/src/untrusted/irt", + "+native_client/src/untrusted/pthread", +] diff --git a/ppapi/native_client/src/trusted/plugin/DEPS b/ppapi/native_client/src/trusted/plugin/DEPS new file mode 100644 index 0000000..c7f3a6b --- /dev/null +++ b/ppapi/native_client/src/trusted/plugin/DEPS @@ -0,0 +1,6 @@ +include_rules = [ + "+native_client/src/shared/imc", + "+native_client/src/shared/srpc", + "+native_client/src/trusted", + "+third_party/jsoncpp", +] diff --git a/ppapi/native_client/tests/earth/DEPS b/ppapi/native_client/tests/earth/DEPS new file mode 100644 index 0000000..58de7ba --- /dev/null +++ b/ppapi/native_client/tests/earth/DEPS @@ -0,0 +1,9 @@ +include_rules = [ + # TODO(bradnelson): Eliminate these rules. While we should keep this test, + # it does not currently appear to be connected to the build. + # It also appears to have bit-rotted as native_client/common/worker.h seems to + # be an obsolete filename. + # Once it is building, it shouldn't use files from native_client. + "+native_client/tests/earth", + "+native_client/common", +] |