diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 17:59:06 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 17:59:06 +0000 |
commit | 7f5fbfbbae9ccf7820aa9c299115ec51ac134f04 (patch) | |
tree | b0bbe75f094d39368c798a6da5f424932eb0ea22 /tools/checkdeps | |
parent | 00421b7b905e80fe6ab2d8827b9ce67f023e188e (diff) | |
download | chromium_src-7f5fbfbbae9ccf7820aa9c299115ec51ac134f04.zip chromium_src-7f5fbfbbae9ccf7820aa9c299115ec51ac134f04.tar.gz chromium_src-7f5fbfbbae9ccf7820aa9c299115ec51ac134f04.tar.bz2 |
Update checkdeps to deal with the more recent From() syntax, and re-enable
From() usage for pulling NaCl's copy of PPAPI.
TEST=checkdeps
BUG=none
Review URL: http://codereview.chromium.org/7347012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92194 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/checkdeps')
-rwxr-xr-x | tools/checkdeps/checkdeps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkdeps/checkdeps.py b/tools/checkdeps/checkdeps.py index e7c49a2..b175bea 100755 --- a/tools/checkdeps/checkdeps.py +++ b/tools/checkdeps/checkdeps.py @@ -243,7 +243,7 @@ def ApplyDirectoryRules(existing_rules, dir_name): # Check the DEPS file in this directory. if VERBOSE: print "Applying rules from", dir_name - def FromImpl(unused): + def FromImpl(unused, unused2): pass # NOP function so "From" doesn't fail. class _VarImpl: |