Commit 2e842237 authored by sky@chromium.org's avatar sky@chromium.org

Random analyzer cleanup

Analyze exceptions have been centralized, so I can remove the
exceptions from each of the trybot files.
--analyzer2 is no longer used by the recipes.

BUG=109173
TEST=none
R=thakis@chromium.org

Review URL: https://codereview.chromium.org/463193002

Cr-Commit-Position: refs/heads/master@{#289094}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289094 0039d316-1c4b-4281-b951-d872f2087c98
parent c9cfd70f
...@@ -189,9 +189,7 @@ def additional_include_files(supplemental_files, args=[]): ...@@ -189,9 +189,7 @@ def additional_include_files(supplemental_files, args=[]):
if __name__ == '__main__': if __name__ == '__main__':
args = sys.argv[1:] args = sys.argv[1:]
# TODO(sky): remove analyzer2 once updated recipes. use_analyzer = len(args) and args[0] == '--analyzer'
use_analyzer = len(args) and (args[0] == '--analyzer' or
args[0] == '--analyzer2')
if use_analyzer: if use_analyzer:
args.pop(0) args.pop(0)
os.environ['GYP_GENERATORS'] = 'analyzer' os.environ['GYP_GENERATORS'] = 'analyzer'
......
...@@ -8,23 +8,5 @@ ...@@ -8,23 +8,5 @@
"browser_tests", "browser_tests",
"nacl_loader_unittests", "nacl_loader_unittests",
"sandbox_linux_unittests" "sandbox_linux_unittests"
],
"gtest_tests_filter_exclusions": [
".*gyp[i]?",
"build/android/pylib",
"build/compiler_version.py",
"build/get_landmines.py",
"build/gyp_chromium",
"build/linux/sysroot_ld_path.sh",
"chrome/test/data/.*",
"content/test/data/.*",
"DEPS",
"testing/buildbot/.*",
"tools/clang/scripts/plugin_flags.sh",
"tools/clang/scripts/update.py",
"tools/clang/scripts/update.sh",
"tools/perf/.*",
"tools/telemetry/.*",
"tools/whitespace.txt"
] ]
} }
...@@ -196,25 +196,6 @@ ...@@ -196,25 +196,6 @@
} }
], ],
"gtest_tests_filter_exclusions": [
".*gyp[i]?",
"build/android/pylib",
"build/compiler_version.py",
"build/get_landmines.py",
"build/gyp_chromium",
"build/linux/sysroot_ld_path.sh",
"chrome/test/data/.*",
"content/test/data/.*",
"DEPS",
"testing/buildbot/.*",
"tools/clang/scripts/plugin_flags.sh",
"tools/clang/scripts/update.py",
"tools/clang/scripts/update.sh",
"tools/perf/.*",
"tools/telemetry/.*",
"tools/whitespace.txt"
],
"non_filter_builders": [ "non_filter_builders": [
], ],
......
...@@ -9,23 +9,5 @@ ...@@ -9,23 +9,5 @@
"ash_unittests", "ash_unittests",
"compositor_unittests", "compositor_unittests",
"events_unittests" "events_unittests"
],
"gtest_tests_filter_exclusions": [
".*gyp[i]?",
"build/android/pylib",
"build/compiler_version.py",
"build/get_landmines.py",
"build/gyp_chromium",
"build/linux/sysroot_ld_path.sh",
"chrome/test/data/.*",
"content/test/data/.*",
"DEPS",
"testing/buildbot/.*",
"tools/clang/scripts/plugin_flags.sh",
"tools/clang/scripts/update.py",
"tools/clang/scripts/update.sh",
"tools/perf/.*",
"tools/telemetry/.*",
"tools/whitespace.txt"
] ]
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment