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}
This commit is contained in:
Henrik Kjellander
2015-11-05 16:42:27 +01:00
parent 93a2febe73
commit 4de30ac99a
3 changed files with 1 additions and 3 deletions

1
.gitignore vendored
View File

@ -137,7 +137,6 @@
/third_party/zlib /third_party/zlib
/tools/android /tools/android
/tools/clang /tools/clang
/tools/find_depot_tools.py
/tools/generate_library_loader /tools/generate_library_loader
/tools/gn /tools/gn
/tools/grit /tools/grit

View File

@ -102,7 +102,6 @@ if 'ios' in target_os:
FILES = { FILES = {
'chrome/VERSION': None, # TODO(kjellander): Get rid of this; webrtc:5160. 'chrome/VERSION': None, # TODO(kjellander): Get rid of this; webrtc:5160.
'tools/find_depot_tools.py': None,
'tools/isolate_driver.py': None, 'tools/isolate_driver.py': None,
'third_party/BUILD.gn': None, 'third_party/BUILD.gn': None,
} }

View File

@ -38,7 +38,7 @@ CHECKOUT_ROOT_DIR = os.path.realpath(os.path.join(SCRIPT_DIR, os.pardir,
sys.path.append(CHECKOUT_ROOT_DIR) sys.path.append(CHECKOUT_ROOT_DIR)
import setup_links 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 import find_depot_tools
find_depot_tools.add_depot_tools_to_path() find_depot_tools.add_depot_tools_to_path()
from gclient import GClientKeywords from gclient import GClientKeywords