OLD | NEW |
---|---|
1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Fletch 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.md file. | 3 # BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 | 5 |
6 vars = { | 6 vars = { |
7 # NOTE: This revision will be used for looking at | 7 # NOTE: This revision will be used for looking at |
8 # gs://chromium-browser-clang/Mac/clang-<rev>-1.tgz | 8 # gs://chromium-browser-clang/Mac/clang-<rev>-1.tgz |
9 # gs://chromium-browser-clang/Linux_x64/clang-<rev>-1.tgz | 9 # gs://chromium-browser-clang/Linux_x64/clang-<rev>-1.tgz |
10 "clang_rev": "245965", | 10 "clang_rev": "245965", |
11 | 11 |
12 "github_url": "https://github.com/%s.git", | 12 "github_url": "https://github.com/%s.git", |
13 | 13 |
14 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", | 14 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", |
15 "persistent_rev": "@55daae1a038188c49e36a64e7ef132c4861da3d8", | 15 "persistent_rev": "@55daae1a038188c49e36a64e7ef132c4861da3d8", |
16 | 16 |
17 # Used by pkg/immi_samples. | 17 # Used by pkg/immi_samples. |
18 "crypto_rev": "@dd0ff8b95269b11f7bd925d2f58e5e938c1f03fc", | 18 "crypto_rev": "@dd0ff8b95269b11f7bd925d2f58e5e938c1f03fc", |
19 | 19 |
20 # Used by fletch_tests. | 20 # Used by fletch_tests. |
21 "isolate_tag": "@0.2.2", | 21 "isolate_tag": "@0.2.2", |
22 | 22 |
23 # When updating this, please remember: | 23 # When updating this, please remember: |
24 # 1. to use a commit on the branch "_temporary_fletch_patches". | 24 # 1. to use a commit on the branch "_temporary_fletch_patches". |
25 # 2. update package revisions below. | 25 # 2. update package revisions below. |
26 "dart_rev": "@f3ca4b2e0acf43b3ac8642cdda5afc10f4e503bb", | 26 # 3. Upload new binaries and update the `third_party/bin` sha-hash-files as |
ahe
2015/12/01 10:12:11
Also `tools/testing/bin/`.
sigurdm
2015/12/03 14:48:08
Done.
| |
27 # described in `third_party/bin/README.md`. | |
28 "dart_rev": "@34357cdad108dcba734949bd13bd28c76ea285e0", | |
27 | 29 |
28 # Please copy these package revisions from ../dart/DEPS when updating | 30 # Please copy these package revisions from ../dart/DEPS when updating |
29 # dart_rev: | 31 # dart_rev: |
30 "package_config_tag": "@0.1.3", | 32 "package_config_tag": "@0.1.3", |
31 "path_tag": "@1.3.6", | 33 "path_tag": "@1.3.6", |
32 "charcode_tag": "@1.1.0", | 34 "charcode_tag": "@1.1.0", |
33 "args_tag": "@0.13.0", | 35 "args_tag": "@0.13.0", |
36 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", | |
37 "pub_semver_tag": "@1.2.1", | |
38 "collection_rev": "@1da9a07f32efa2ba0c391b289e2037391e31da0e", | |
34 | 39 |
35 "lk_rev": "@b822b1f64f4a98ad10c9794e8ed20ab8ccba3d4a", | 40 "lk_rev": "@b822b1f64f4a98ad10c9794e8ed20ab8ccba3d4a", |
36 | 41 |
37 # We use mirrors of all github repos to guarantee reproducibility and | 42 # We use mirrors of all github repos to guarantee reproducibility and |
38 # consistency between what users see and what the bots see. | 43 # consistency between what users see and what the bots see. |
39 # We need the mirrors to not have 100+ bots pulling github constantly. | 44 # We need the mirrors to not have 100+ bots pulling github constantly. |
40 # We mirror our github repos on chromium git servers. | 45 # We mirror our github repos on chromium git servers. |
41 # DO NOT use this var if you don't see a mirror here: | 46 # DO NOT use this var if you don't see a mirror here: |
42 # https://chromium.googlesource.com/ | 47 # https://chromium.googlesource.com/ |
43 # named like: | 48 # named like: |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
76 | 81 |
77 "fletch/third_party/crypto": | 82 "fletch/third_party/crypto": |
78 (Var("github_mirror") % "crypto") + Var("crypto_rev"), | 83 (Var("github_mirror") % "crypto") + Var("crypto_rev"), |
79 | 84 |
80 "fletch/third_party/lk/lk-downstream": | 85 "fletch/third_party/lk/lk-downstream": |
81 (Var("github_url") % "travisg/lk") + Var("lk_rev"), | 86 (Var("github_url") % "travisg/lk") + Var("lk_rev"), |
82 | 87 |
83 "fletch/third_party/isolate": | 88 "fletch/third_party/isolate": |
84 "https://github.com/dart-lang/isolate.git" + Var("isolate_tag"), | 89 "https://github.com/dart-lang/isolate.git" + Var("isolate_tag"), |
85 | 90 |
91 "fletch/third_party/dart2js_info": | |
92 "https://github.com/dart-lang/dart2js_info.git" + Var("dart2js_info_rev"), | |
93 | |
94 "fletch/third_party/pub_semver": | |
95 (Var("github_mirror") % "pub_semver") + Var("pub_semver_tag"), | |
96 | |
97 "fletch/third_party/collection": | |
98 (Var("github_mirror") % "collection") + Var("collection_rev"), | |
99 | |
86 "wiki": (Var("github_url") % "dart-lang/fletch.wiki"), | 100 "wiki": (Var("github_url") % "dart-lang/fletch.wiki"), |
87 } | 101 } |
88 | 102 |
89 # To include Mac deps on other OSes, add this to your .gclient file: | 103 # To include Mac deps on other OSes, add this to your .gclient file: |
90 # | 104 # |
91 # target_os = [ "mac" ] | 105 # target_os = [ "mac" ] |
92 # | 106 # |
93 # To ignore the host OS, add this: | 107 # To ignore the host OS, add this: |
94 # | 108 # |
95 # target_os_only = True | 109 # target_os_only = True |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
193 ], | 207 ], |
194 }, | 208 }, |
195 { | 209 { |
196 'name': 'GYP', | 210 'name': 'GYP', |
197 'pattern': '.', | 211 'pattern': '.', |
198 'action': [ | 212 'action': [ |
199 'ninja', '-C', 'fletch', | 213 'ninja', '-C', 'fletch', |
200 ], | 214 ], |
201 }, | 215 }, |
202 ] | 216 ] |
OLD | NEW |