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