Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: DEPS

Issue 2603203002: Add cleanup_links.py script that runs before sync. (Closed)
Patch Set: Cleaning of the links database file Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .gitignore ('k') | cleanup_links.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file contains dependencies for WebRTC. 1 # This file contains dependencies for WebRTC.
2 2
3 vars = { 3 vars = {
4 'chromium_git': 'https://chromium.googlesource.com', 4 'chromium_git': 'https://chromium.googlesource.com',
5 'chromium_revision': '47eb4d6194ddf04274a80779ad35db8722eaee9a', 5 'chromium_revision': '47eb4d6194ddf04274a80779ad35db8722eaee9a',
6 'boringssl_git': 'https://boringssl.googlesource.com', 6 'boringssl_git': 'https://boringssl.googlesource.com',
7 # Three lines of non-changing comments so that 7 # Three lines of non-changing comments so that
8 # the commit queue can handle CLs rolling swarming_client 8 # the commit queue can handle CLs rolling swarming_client
9 # and whatever else without interference from each other. 9 # and whatever else without interference from each other.
10 'swarming_revision': 'ebc8dab6f8b8d79ec221c94de39a921145abd404', 10 'swarming_revision': 'ebc8dab6f8b8d79ec221c94de39a921145abd404',
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 # Dependencies used by libjpeg-turbo 131 # Dependencies used by libjpeg-turbo
132 'src/third_party/yasm/binaries': 132 'src/third_party/yasm/binaries':
133 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4 b0aa06da24ef8b123058bb61ee468881', 133 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4 b0aa06da24ef8b123058bb61ee468881',
134 134
135 # WebRTC-only dependency (not present in Chromium). 135 # WebRTC-only dependency (not present in Chromium).
136 'src/third_party/winsdk_samples': 136 'src/third_party/winsdk_samples':
137 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v7 1' + '@' + '6e4f93cc0c2f597547449cbaa80a6af629215a63', 137 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v7 1' + '@' + '6e4f93cc0c2f597547449cbaa80a6af629215a63',
138 }, 138 },
139 } 139 }
140 140
141 pre_deps_hooks = [
142 {
143 # Remove any symlinks from before 177567c518b121731e507e9b9c4049c4dc96e4c8.
144 # TODO(kjellander): Remove this in March 2017.
145 'name': 'cleanup_links',
146 'pattern': '.',
147 'action': ['python', 'src/cleanup_links.py'],
148 },
149 ]
150
141 hooks = [ 151 hooks = [
142 { 152 {
143 # Check for legacy named top-level dir (named 'trunk'). 153 # Check for legacy named top-level dir (named 'trunk').
144 'name': 'check_root_dir_name', 154 'name': 'check_root_dir_name',
145 'pattern': '.', 155 'pattern': '.',
146 'action': ['python','-c', 156 'action': ['python','-c',
147 ('import os,sys;' 157 ('import os,sys;'
148 'script = os.path.join("trunk","check_root_dir.py");' 158 'script = os.path.join("trunk","check_root_dir.py");'
149 '_ = os.system("%s %s" % (sys.executable,script)) ' 159 '_ = os.system("%s %s" % (sys.executable,script)) '
150 'if os.path.exists(script) else 0')], 160 'if os.path.exists(script) else 0')],
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 }, 523 },
514 ] 524 ]
515 525
516 recursedeps = [ 526 recursedeps = [
517 # buildtools provides clang_format, libc++, and libc++abi. 527 # buildtools provides clang_format, libc++, and libc++abi.
518 'src/buildtools', 528 'src/buildtools',
519 # android_tools manages the NDK. 529 # android_tools manages the NDK.
520 'src/third_party/android_tools', 530 'src/third_party/android_tools',
521 ] 531 ]
522 532
OLDNEW
« no previous file with comments | « .gitignore ('k') | cleanup_links.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698