diff options
Diffstat (limited to 'chromium/buildtools/checkdeps/builddeps.py')
-rwxr-xr-x | chromium/buildtools/checkdeps/builddeps.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chromium/buildtools/checkdeps/builddeps.py b/chromium/buildtools/checkdeps/builddeps.py index 2dc9351ff83..519228df241 100755 --- a/chromium/buildtools/checkdeps/builddeps.py +++ b/chromium/buildtools/checkdeps/builddeps.py @@ -93,7 +93,8 @@ class DepsBuilder(object): Args: base_directory: local path to root of checkout, e.g. C:\chr\src. verbose: Set to True for debug output. - being_tested: Set to True to ignore the DEPS file at tools/checkdeps/DEPS. + being_tested: Set to True to ignore the DEPS file at + buildtools/checkdeps/DEPS. ignore_temp_rules: Ignore rules that start with Rule.TEMP_ALLOW ("!"). """ base_directory = (base_directory or @@ -236,7 +237,7 @@ class DepsBuilder(object): deps_file_path = os.path.join(dir_path_local_abs, 'DEPS') # The second conditional here is to disregard the - # tools/checkdeps/DEPS file while running tests. This DEPS file + # buildtools/checkdeps/DEPS file while running tests. This DEPS file # has a skip_child_includes for 'testdata' which is necessary for # running production tests, since there are intentional DEPS # violations under the testdata directory. On the other hand when |