Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 vars = { | 5 vars = { |
| 6 # The dart_root is the root of our dart checkout. This is normally | 6 # The dart_root is the root of our dart checkout. This is normally |
| 7 # simply dart, but if using special gclient specs it can be different. | 7 # simply dart, but if using special gclient specs it can be different. |
| 8 "dart_root": "dart", | 8 "dart_root": "dart", |
| 9 | 9 |
| 10 # The svn location to pull out dependencies from | 10 # The svn location to pull out dependencies from |
| 11 "third_party": "/third_party", | 11 "third_party": "/third_party", |
| 12 | 12 |
| 13 # The svn location for pulling pinned revisions of bleeding edge dependencies. | 13 # The svn location for pulling pinned revisions of bleeding edge dependencies. |
| 14 "bleeding_edge": "/branches/bleeding_edge", | 14 "bleeding_edge": "/branches/bleeding_edge", |
| 15 | 15 |
| 16 # Use this googlecode_url variable only if there is an internal mirror for it. | 16 # Use this googlecode_url variable only if there is an internal mirror for it. |
| 17 # If you do not know, use the full path while defining your new deps entry. | 17 # If you do not know, use the full path while defining your new deps entry. |
| 18 "googlecode_url": "http://%s.googlecode.com/svn", | 18 "googlecode_url": "http://%s.googlecode.com/svn", |
| 19 | 19 |
| 20 "gyp_rev": "@1752", | 20 "gyp_rev": "@1752", |
| 21 "co19_rev": "@801", | 21 "co19_rev": "@801", |
| 22 "chromium_url": "http://src.chromium.org/svn", | 22 "chromium_url": "http://src.chromium.org/svn", |
| 23 "chromium_git": "https://chromium.googlesource.com", | 23 "chromium_git": "https://chromium.googlesource.com", |
| 24 | 24 |
| 25 # Revisions of /third_party/* dependencies. | 25 # Revisions of /third_party/* dependencies. |
| 26 "7zip_rev" : "@19997", | 26 "7zip_rev" : "@19997", |
| 27 "analyzer_cli_rev" : "@ccc093fb57da302c27966ba3321bc6f273cce7ae", | |
|
Bob Nystrom
2015/04/20 22:56:30
This works too but if you're publishing analyzer_c
ricow1
2015/04/21 06:05:03
That is fine, as long as we don't change the tag t
| |
| 27 "android_adb_rev" : "@36744", | 28 "android_adb_rev" : "@36744", |
| 28 "android_content_shell_rev" : "@37275", | 29 "android_content_shell_rev" : "@37275", |
| 29 "apache_ant_rev" : "@19997", | 30 "apache_ant_rev" : "@19997", |
| 30 "apache_compress_rev" : "@19997", | 31 "apache_compress_rev" : "@19997", |
| 31 "apache_http_rev" : "@37872", | 32 "apache_http_rev" : "@37872", |
| 32 "args_rev" : "@2699ca11b09158ab23ff4cb464ab255e89cc2f27", | 33 "args_rev" : "@2699ca11b09158ab23ff4cb464ab255e89cc2f27", |
| 33 "args4j_rev" : "@19997", | 34 "args4j_rev" : "@19997", |
| 34 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", | 35 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", |
| 35 "bzip2_rev" : "@19997", | 36 "bzip2_rev" : "@19997", |
| 36 "chrome_rev" : "@19997", | 37 "chrome_rev" : "@19997", |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 205 Var("dart_root") + "/third_party/weberknecht": | 206 Var("dart_root") + "/third_party/weberknecht": |
| 206 Var("third_party") + "/weberknecht" + Var("weberknecht_rev"), | 207 Var("third_party") + "/weberknecht" + Var("weberknecht_rev"), |
| 207 Var("dart_root") + "/third_party/observatory_pub_packages": | 208 Var("dart_root") + "/third_party/observatory_pub_packages": |
| 208 Var("third_party") + "/observatory_pub_packages" + | 209 Var("third_party") + "/observatory_pub_packages" + |
| 209 Var("observatory_pub_packages_rev"), | 210 Var("observatory_pub_packages_rev"), |
| 210 | 211 |
| 211 Var("dart_root") + "/third_party/dart-services": | 212 Var("dart_root") + "/third_party/dart-services": |
| 212 "https://github.com/dart-lang/dart-services.git" + | 213 "https://github.com/dart-lang/dart-services.git" + |
| 213 Var("dart_services_rev"), | 214 Var("dart_services_rev"), |
| 214 | 215 |
| 216 Var("dart_root") + "/third_party/pkg_tested/analyzer_cli": | |
| 217 "https://github.com/dart-lang/analyzer_cli.git" + Var("analyzer_cli_rev"), | |
| 215 Var("dart_root") + "/third_party/pkg/args": | 218 Var("dart_root") + "/third_party/pkg/args": |
| 216 "https://github.com/dart-lang/args.git" + Var("args_rev"), | 219 "https://github.com/dart-lang/args.git" + Var("args_rev"), |
| 217 Var("dart_root") + "/third_party/pkg/async_await": | 220 Var("dart_root") + "/third_party/pkg/async_await": |
| 218 "https://github.com/dart-lang/async_await.git" + Var("async_await_rev"), | 221 "https://github.com/dart-lang/async_await.git" + Var("async_await_rev"), |
| 219 Var("dart_root") + "/third_party/pkg/barback": | 222 Var("dart_root") + "/third_party/pkg/barback": |
| 220 "https://github.com/dart-lang/barback.git" + Var("barback_rev"), | 223 "https://github.com/dart-lang/barback.git" + Var("barback_rev"), |
| 221 Var("dart_root") + "/third_party/pkg/collection": | 224 Var("dart_root") + "/third_party/pkg/collection": |
| 222 "https://github.com/dart-lang/collection.git" + Var("collection_rev"), | 225 "https://github.com/dart-lang/collection.git" + Var("collection_rev"), |
| 223 Var("dart_root") + "/third_party/pkg/crypto": | 226 Var("dart_root") + "/third_party/pkg/crypto": |
| 224 "https://github.com/dart-lang/crypto.git" + Var("crypto_rev"), | 227 "https://github.com/dart-lang/crypto.git" + Var("crypto_rev"), |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 342 }, | 345 }, |
| 343 { | 346 { |
| 344 "pattern": ".", | 347 "pattern": ".", |
| 345 "action": ["python", Var("dart_root") + "/editor/build/generate_sources.py"] , | 348 "action": ["python", Var("dart_root") + "/editor/build/generate_sources.py"] , |
| 346 }, | 349 }, |
| 347 { | 350 { |
| 348 "pattern": ".", | 351 "pattern": ".", |
| 349 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | 352 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
| 350 }, | 353 }, |
| 351 ] | 354 ] |
| OLD | NEW |