diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-12 02:38:29 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-12 02:38:29 +0000 |
commit | fcc559f343000258f82acee276961a73732f502d (patch) | |
tree | 317231e55962751690a350d352437ee3d902bd7a /tools | |
parent | e99f8f5dc6d09553ccb863c4069e480de71c4a22 (diff) | |
download | chromium_src-fcc559f343000258f82acee276961a73732f502d.zip chromium_src-fcc559f343000258f82acee276961a73732f502d.tar.gz chromium_src-fcc559f343000258f82acee276961a73732f502d.tar.bz2 |
Remove references to sconsbuild.
scons hasn't been used in a long time.
BUG=305702
NOTRY=true
Review URL: https://codereview.chromium.org/26718002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228308 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/checklicenses/checklicenses.py | 2 | ||||
-rw-r--r-- | tools/telemetry/telemetry/core/backends/chrome/desktop_browser_finder_unittest.py | 4 | ||||
-rw-r--r-- | tools/telemetry/telemetry/core/util.py | 1 |
3 files changed, 1 insertions, 6 deletions
diff --git a/tools/checklicenses/checklicenses.py b/tools/checklicenses/checklicenses.py index c8fa702..179e810 100755 --- a/tools/checklicenses/checklicenses.py +++ b/tools/checklicenses/checklicenses.py @@ -493,7 +493,7 @@ def check_licenses(options, args): # All files in the build output directory are generated one way or another. # There's no need to check them. - if filename.startswith('out/') or filename.startswith('sconsbuild/'): + if filename.startswith('out/'): continue # For now we're just interested in the license. diff --git a/tools/telemetry/telemetry/core/backends/chrome/desktop_browser_finder_unittest.py b/tools/telemetry/telemetry/core/backends/chrome/desktop_browser_finder_unittest.py index eda64bb..7192c13 100644 --- a/tools/telemetry/telemetry/core/backends/chrome/desktop_browser_finder_unittest.py +++ b/tools/telemetry/telemetry/core/backends/chrome/desktop_browser_finder_unittest.py @@ -73,10 +73,6 @@ class FindLocalBuildsTest(FindTestBase): self._files.append('..\\..\\..\\out\\Release\\chrome.exe') self.assertTrue('release' in self.DoFindAllTypes()) - def testFindSconsbuild(self): - self._files.append('..\\..\\..\\sconsbuild\\Release\\chrome.exe') - self.assertTrue('release' in self.DoFindAllTypes()) - def testFindXcodebuild(self): self._files.append('..\\..\\..\\xcodebuild\\Release\\chrome.exe') self.assertTrue('release' in self.DoFindAllTypes()) diff --git a/tools/telemetry/telemetry/core/util.py b/tools/telemetry/telemetry/core/util.py index 9c7a4b1..a013eea 100644 --- a/tools/telemetry/telemetry/core/util.py +++ b/tools/telemetry/telemetry/core/util.py @@ -114,7 +114,6 @@ def GetBuildDirectories(): """Yields all combination of Chromium build output directories.""" build_dirs = ['build', 'out', - 'sconsbuild', 'xcodebuild'] build_types = ['Debug', 'Debug_x64', 'Release', 'Release_x64'] |