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

Side by Side Diff: DEPS

Issue 1408123011: Use find_depot_tools.py and vs_toolchain.py from chromium/src/build/ (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 5 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/find_depot_tools.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 # DEPS files look like -*- Python -*- 1 # DEPS files look like -*- Python -*-
2 2
3 vars = { 3 vars = {
4 # These revisions are slices of the chromium repository. 4 # These revisions are slices of the chromium repository.
5 # Because they come from separate sub-slices, their hashes do not match at 5 # Because they come from separate sub-slices, their hashes do not match at
6 # equivalent revisions. When updating them, use the roll-dep script 6 # equivalent revisions. When updating them, use the roll-dep script
7 # to move them to equivalent revisions. Additionally, because not all 7 # to move them to equivalent revisions. Additionally, because not all
8 # directories contain commits at each revision, you will need to select 8 # directories contain commits at each revision, you will need to select
9 # revisions at latest revision up to a high watermark from each slice. 9 # revisions at latest revision up to a high watermark from each slice.
10 # Document the high watermark here: 10 # Document the high watermark here:
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 # Cleanup any stale package_version files. 136 # Cleanup any stale package_version files.
137 { 137 {
138 "pattern": ".", 138 "pattern": ".",
139 "action": ["python", 139 "action": ["python",
140 "native_client/build/package_version/package_version.py", 140 "native_client/build/package_version/package_version.py",
141 "cleanup", 141 "cleanup",
142 ], 142 ],
143 }, 143 },
144 { 144 {
145 # Update the Windows toolchain if necessary. 145 # Update the Windows toolchain if necessary.
146 "name": "win_toolchain", 146 'name': 'win_toolchain',
147 "pattern": ".", 147 'pattern': '.',
148 "action": ["python", "native_client/build/vs_toolchain.py", "update"], 148 'action': ['python', 'build/vs_toolchain.py', 'update'],
149 }, 149 },
150 # Pull binutils for linux, enabled debug fission for faster linking / 150 # Pull binutils for linux, enabled debug fission for faster linking /
151 # debugging when used with clang on Ubuntu Precise. 151 # debugging when used with clang on Ubuntu Precise.
152 # https://code.google.com/p/chromium/issues/detail?id=352046 152 # https://code.google.com/p/chromium/issues/detail?id=352046
153 { 153 {
154 'name': 'binutils', 154 'name': 'binutils',
155 'pattern': 'third_party/binutils', 155 'pattern': 'third_party/binutils',
156 'action': [ 156 'action': [
157 'python', 157 'python',
158 'third_party/binutils/download.py', 158 'third_party/binutils/download.py',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 "--bucket", "chromium-clang-format", 238 "--bucket", "chromium-clang-format",
239 "-s", "buildtools/linux64/clang-format.sha1", 239 "-s", "buildtools/linux64/clang-format.sha1",
240 ], 240 ],
241 }, 241 },
242 ] 242 ]
243 243
244 include_rules = [ 244 include_rules = [
245 "+native_client/src/include", 245 "+native_client/src/include",
246 "+gtest", 246 "+gtest",
247 ] 247 ]
OLDNEW
« no previous file with comments | « no previous file | build/find_depot_tools.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698