From 4de30ac99a251fc6d7a18f3b275e615854875bab Mon Sep 17 00:00:00 2001 From: Henrik Kjellander Date: Thu, 5 Nov 2015 16:42:27 +0100 Subject: [PATCH] Update moved find_depot_tools.py script location The script moved from /tools to /build in https://codereview.chromium.org/1418513007 and we haven't noticed due to cached .pyc files. We could add a cleaning of .pyc files similar to https://codereview.chromium.org/1186593003 but I think that's overkill for WebRTC. BUG= R=phoglund@webrtc.org Review URL: https://codereview.webrtc.org/1409353014 . Cr-Commit-Position: refs/heads/master@{#10526} --- .gitignore | 1 - setup_links.py | 1 - tools/autoroller/roll_chromium_revision.py | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d2ca68317e..1a2ee045df 100644 --- a/.gitignore +++ b/.gitignore @@ -137,7 +137,6 @@ /third_party/zlib /tools/android /tools/clang -/tools/find_depot_tools.py /tools/generate_library_loader /tools/gn /tools/grit diff --git a/setup_links.py b/setup_links.py index 56071c2db1..d789906cb6 100755 --- a/setup_links.py +++ b/setup_links.py @@ -102,7 +102,6 @@ if 'ios' in target_os: FILES = { 'chrome/VERSION': None, # TODO(kjellander): Get rid of this; webrtc:5160. - 'tools/find_depot_tools.py': None, 'tools/isolate_driver.py': None, 'third_party/BUILD.gn': None, } diff --git a/tools/autoroller/roll_chromium_revision.py b/tools/autoroller/roll_chromium_revision.py index 917ecd6570..0d5d03b667 100755 --- a/tools/autoroller/roll_chromium_revision.py +++ b/tools/autoroller/roll_chromium_revision.py @@ -38,7 +38,7 @@ CHECKOUT_ROOT_DIR = os.path.realpath(os.path.join(SCRIPT_DIR, os.pardir, sys.path.append(CHECKOUT_ROOT_DIR) import setup_links -sys.path.append(os.path.join(CHECKOUT_ROOT_DIR, 'tools')) +sys.path.append(os.path.join(CHECKOUT_ROOT_DIR, 'build')) import find_depot_tools find_depot_tools.add_depot_tools_to_path() from gclient import GClientKeywords