OLD | NEW |
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 Loading... |
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 Loading... |
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 ] |
OLD | NEW |