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 sdk checkout. This is normally | 6 # The dart_root is the root of our sdk checkout. This is normally |
7 # simply sdk, but if using special gclient specs it can be different. | 7 # simply sdk, but if using special gclient specs it can be different. |
8 "dart_root": "sdk", | 8 "dart_root": "sdk", |
9 | 9 |
10 # We use mirrors of all github repos to guarantee reproducibility and | 10 # We use mirrors of all github repos to guarantee reproducibility and |
(...skipping 28 matching lines...) Expand all Loading... | |
39 "chrome_rev" : "@19997", | 39 "chrome_rev" : "@19997", |
40 "cli_util_tag" : "@0.0.1+2", | 40 "cli_util_tag" : "@0.0.1+2", |
41 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc", | 41 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc", |
42 "convert_tag": "@1.0.0", | 42 "convert_tag": "@1.0.0", |
43 "crypto_tag" : "@1.1.0", | 43 "crypto_tag" : "@1.1.0", |
44 "csslib_tag" : "@0.12.0", | 44 "csslib_tag" : "@0.12.0", |
45 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", | 45 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", |
46 "dartdoc_tag" : "@v0.9.0", | 46 "dartdoc_tag" : "@v0.9.0", |
47 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", | 47 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", |
48 "dart_style_tag": "@0.2.4", | 48 "dart_style_tag": "@0.2.4", |
49 "dev_compiler_rev": "@0c5dd2d1e999c421d978a478e267aac6279e087a", | 49 "dev_compiler_rev": "@0ed6aeca35fa0e618ad0f7f19f3eba64afdd80c4", |
50 "func_rev": "@8d4aea75c21be2179cb00dc2b94a71414653094e", | |
50 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", | 51 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", |
51 "html_tag" : "@0.12.1+1", | 52 "html_tag" : "@0.12.1+1", |
52 "http_tag" : "@0.11.3+3", | 53 "http_tag" : "@0.11.3+3", |
53 "http_multi_server_tag" : "@2.0.0", | 54 "http_multi_server_tag" : "@2.0.0", |
54 "http_parser_tag" : "@1.1.0", | 55 "http_parser_tag" : "@1.1.0", |
55 "http_throttle_rev" : "@a81f08be942cdd608883c7b67795c12226abc235", | 56 "http_throttle_rev" : "@a81f08be942cdd608883c7b67795c12226abc235", |
56 "idl_parser_rev": "@7fbe68cab90c38147dee4f48c30ad0d496c17915", | 57 "idl_parser_rev": "@7fbe68cab90c38147dee4f48c30ad0d496c17915", |
57 "intl_rev": "@a8b480b9c436f6c0ec16730804c914bdb4e30d53", | 58 "intl_rev": "@a8b480b9c436f6c0ec16730804c914bdb4e30d53", |
58 "jinja2_rev": "@2222b31554f03e62600cd7e383376a7c187967a1", | 59 "jinja2_rev": "@2222b31554f03e62600cd7e383376a7c187967a1", |
59 "json_rpc_2_tag": "@2.0.0", | 60 "json_rpc_2_tag": "@2.0.0", |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
172 (Var("github_mirror") % "dart-services") + | 173 (Var("github_mirror") % "dart-services") + |
173 Var("dart_services_rev"), | 174 Var("dart_services_rev"), |
174 Var("dart_root") + "/third_party/pkg_tested/dart_style": | 175 Var("dart_root") + "/third_party/pkg_tested/dart_style": |
175 (Var("github_mirror") % "dart_style") + Var("dart_style_tag"), | 176 (Var("github_mirror") % "dart_style") + Var("dart_style_tag"), |
176 Var("dart_root") + "/third_party/pkg/dart2js_info": | 177 Var("dart_root") + "/third_party/pkg/dart2js_info": |
177 (Var("github_mirror") % "dart2js_info") + Var("dart2js_info_rev"), | 178 (Var("github_mirror") % "dart2js_info") + Var("dart2js_info_rev"), |
178 Var("dart_root") + "/third_party/pkg/dartdoc": | 179 Var("dart_root") + "/third_party/pkg/dartdoc": |
179 (Var("github_mirror") % "dartdoc") + Var("dartdoc_tag"), | 180 (Var("github_mirror") % "dartdoc") + Var("dartdoc_tag"), |
180 Var("dart_root") + "/third_party/pkg/dev_compiler": | 181 Var("dart_root") + "/third_party/pkg/dev_compiler": |
181 (Var("github_mirror") % "dev_compiler") + Var("dev_compiler_rev"), | 182 (Var("github_mirror") % "dev_compiler") + Var("dev_compiler_rev"), |
183 Var("dart_root") + "/third_party/pkg/func": | |
184 (Var("github_dartlang") % "func") + Var("func_rev"), | |
vsm
2016/04/19 21:41:32
Should this be "github_mirror" like the entries ar
| |
182 Var("dart_root") + "/third_party/pkg/glob": | 185 Var("dart_root") + "/third_party/pkg/glob": |
183 (Var("github_mirror") % "glob") + Var("glob_rev"), | 186 (Var("github_mirror") % "glob") + Var("glob_rev"), |
184 Var("dart_root") + "/third_party/pkg/html": | 187 Var("dart_root") + "/third_party/pkg/html": |
185 (Var("github_mirror") % "html") + Var("html_tag"), | 188 (Var("github_mirror") % "html") + Var("html_tag"), |
186 Var("dart_root") + "/third_party/pkg/http": | 189 Var("dart_root") + "/third_party/pkg/http": |
187 (Var("github_mirror") % "http") + Var("http_tag"), | 190 (Var("github_mirror") % "http") + Var("http_tag"), |
188 Var("dart_root") + "/third_party/pkg/http_multi_server": | 191 Var("dart_root") + "/third_party/pkg/http_multi_server": |
189 (Var("github_mirror") % "http_multi_server") + | 192 (Var("github_mirror") % "http_multi_server") + |
190 Var("http_multi_server_tag"), | 193 Var("http_multi_server_tag"), |
191 Var("dart_root") + "/third_party/pkg/http_parser": | 194 Var("dart_root") + "/third_party/pkg/http_parser": |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
447 "--extract", | 450 "--extract", |
448 "-s", | 451 "-s", |
449 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 452 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
450 ], | 453 ], |
451 }, | 454 }, |
452 { | 455 { |
453 "pattern": ".", | 456 "pattern": ".", |
454 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | 457 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
455 }, | 458 }, |
456 ] | 459 ] |
OLD | NEW |