diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-27 17:52:54 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-27 17:52:54 +0000 |
commit | f82ef0669069492f863bdbc4bf225c95bcc662a8 (patch) | |
tree | 40c9d67a3078f1b511d8aa7f0299a92fadf1807a /chrome | |
parent | 8b3f0f025452b3d5a79e7942045574f84040b3c5 (diff) | |
download | chromium_src-f82ef0669069492f863bdbc4bf225c95bcc662a8.zip chromium_src-f82ef0669069492f863bdbc4bf225c95bcc662a8.tar.gz chromium_src-f82ef0669069492f863bdbc4bf225c95bcc662a8.tar.bz2 |
Don't make checkdeps ignore includes to directories that are brought in via deps. Most of these are already listed in DEPS files, and it seems that we want to prevent includes on them just like normal directories that are in our tree (otherwise content can depend on native_client, for ex)
Review URL: https://chromiumcodereview.appspot.com/10248005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134296 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/DEPS | 4 | ||||
-rw-r--r-- | chrome/app/DEPS | 1 | ||||
-rw-r--r-- | chrome/browser/DEPS | 4 | ||||
-rw-r--r-- | chrome/browser/chromeos/DEPS | 1 | ||||
-rw-r--r-- | chrome/installer/DEPS | 1 | ||||
-rw-r--r-- | chrome/nacl/DEPS | 1 | ||||
-rw-r--r-- | chrome/renderer/DEPS | 1 | ||||
-rw-r--r-- | chrome/tools/DEPS | 1 |
8 files changed, 13 insertions, 1 deletions
diff --git a/chrome/DEPS b/chrome/DEPS index 7795bf0..949cb3b 100644 --- a/chrome/DEPS +++ b/chrome/DEPS @@ -2,6 +2,7 @@ include_rules = [ "+ash", "+crypto", "+gpu", + "+native_client", "+net", "+printing", "+sql", @@ -31,6 +32,7 @@ include_rules = [ "-crypto/third_party", # Allow inclusion of WebKit API files. + "+third_party/WebKit/Source/Platform/chromium", "+third_party/WebKit/Source/WebKit/chromium", "+webkit/appcache", "+webkit/blob", @@ -40,9 +42,11 @@ include_rules = [ "+webkit/quota", # Allow inclusion of third-party code: + "+third_party/hunspell", "+third_party/icon_family", # IconFamily for Mac. "+third_party/mozilla", # Mozilla interface headers. "+third_party/npapi", # NPAPI interface headers. + "+third_party/skia", "+third_party/tcmalloc", # tcmallo "+third_party/GTM", # Google Toolbox for Mac. diff --git a/chrome/app/DEPS b/chrome/app/DEPS index 680eaa9..e8880a2 100644 --- a/chrome/app/DEPS +++ b/chrome/app/DEPS @@ -12,6 +12,7 @@ include_rules = [ "+media/base", # For initializing media library. "+policy", # For generated headers and source "+sandbox", + "+seccompsandbox", "+tools/memory_watcher", "+third_party/lss/linux_syscall_support.h", ] diff --git a/chrome/browser/DEPS b/chrome/browser/DEPS index 012d4cc..fdd22ec 100644 --- a/chrome/browser/DEPS +++ b/chrome/browser/DEPS @@ -1,4 +1,5 @@ include_rules = [ + "+breakpad", "+chrome/app", "+chrome/app/locales", "+chrome/installer", @@ -40,14 +41,15 @@ include_rules = [ "-content/common", # Other libraries. - "+chrome/third_party/hunspell", "+chrome/third_party/mozilla_security_manager", "+libxml", # For search engine definition parsing. "+third_party/apple_sample_code", # Apple code ImageAndTextCell. "+third_party/cld", "+third_party/expat", "+third_party/iaccessible2", + "+third_party/icu", "+third_party/isimpledom", + "+third_party/leveldatabase", "+third_party/libevent", # For the remote V8 debugging server "+third_party/libjingle", "+third_party/protobuf/src/google/protobuf", diff --git a/chrome/browser/chromeos/DEPS b/chrome/browser/chromeos/DEPS index 27f2ce6..22e858e 100644 --- a/chrome/browser/chromeos/DEPS +++ b/chrome/browser/chromeos/DEPS @@ -1,4 +1,5 @@ include_rules = [ "+cros", "+dbus", + "+third_party/mozc", ] diff --git a/chrome/installer/DEPS b/chrome/installer/DEPS index 14e06a6..15a202f 100644 --- a/chrome/installer/DEPS +++ b/chrome/installer/DEPS @@ -1,4 +1,5 @@ include_rules = [ + "+breakpad", "+chrome_frame", "+google_update", "+rlz", diff --git a/chrome/nacl/DEPS b/chrome/nacl/DEPS index 9700f06..d27086f 100644 --- a/chrome/nacl/DEPS +++ b/chrome/nacl/DEPS @@ -2,5 +2,6 @@ include_rules = [ "+chrome/app/breakpad_win.h", "+content/public/app/startup_helper_win.h", "+sandbox/src", + "+seccompsandbox", "+native_client/src", ] diff --git a/chrome/renderer/DEPS b/chrome/renderer/DEPS index d7c75d9..28cd104 100644 --- a/chrome/renderer/DEPS +++ b/chrome/renderer/DEPS @@ -20,5 +20,6 @@ include_rules = [ "+webkit/plugins", "+third_party/cld/encodings/compact_lang_det/win", "+third_party/npapi/bindings", + "+third_party/smhasher", "+third_party/sqlite", ] diff --git a/chrome/tools/DEPS b/chrome/tools/DEPS index 5e2a516..b5d4427 100644 --- a/chrome/tools/DEPS +++ b/chrome/tools/DEPS @@ -1,4 +1,5 @@ include_rules = [ + "+breakpad", "+chrome/browser", "+chrome/third_party/hunspell/google", "+content/browser", |