OLD | NEW |
---|---|
1 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Dartino 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 "buildtools_revision": "@818123dac34899ec230840936fc15b8b2b5556f9", | 12 "buildtools_revision": "@818123dac34899ec230840936fc15b8b2b5556f9", |
13 | 13 |
14 "github_url": "https://github.com/%s.git", | 14 "github_url": "https://github.com/%s.git", |
15 | 15 |
16 "gyp_rev": "@6fb8bd829f0ca8fd432fd85ede788b6881c4f09f", | 16 "gyp_rev": "@6fb8bd829f0ca8fd432fd85ede788b6881c4f09f", |
17 "persistent_rev": "@55daae1a038188c49e36a64e7ef132c4861da3d8", | 17 "persistent_rev": "@55daae1a038188c49e36a64e7ef132c4861da3d8", |
18 | 18 |
19 # Used by pkg/immi_samples. | 19 # Used by pkg/immi_samples. |
20 "crypto_rev": "@dd0ff8b95269b11f7bd925d2f58e5e938c1f03fc", | 20 "crypto_rev": "@dd0ff8b95269b11f7bd925d2f58e5e938c1f03fc", |
21 | 21 |
22 # Used by dartino_tests. | 22 # Used by dartino_tests. |
23 "isolate_tag": "@0.2.2", | 23 "isolate_tag": "@0.2.2", |
24 | 24 |
25 # When updating this, please remember: | 25 # When updating this, please remember: |
26 # 1. to use a commit on the branch "_temporary_fletch_patches". | 26 # 1. to use a commit on the branch "_temporary_dartino_patches". |
Søren Gjesse
2016/02/03 12:06:54
I assume you will rename this Git branch.
ricow1
2016/02/03 12:29:18
yes
| |
27 # 2. update package revisions below. | 27 # 2. update package revisions below. |
28 # 3. Upload new binaries and update the `third_party/bin` sha-hash-files as | 28 # 3. Upload new binaries and update the `third_party/bin` sha-hash-files as |
29 # described in `third_party/bin/README.md`. | 29 # described in `third_party/bin/README.md`. |
30 "dart_rev": "@0cc4be4b0462635dc198d96974e152abbd86ff6f", | 30 "dart_rev": "@0cc4be4b0462635dc198d96974e152abbd86ff6f", |
31 | 31 |
32 # Please copy these package revisions from ../dart/DEPS when updating | 32 # Please copy these package revisions from ../dart/DEPS when updating |
33 # dart_rev: | 33 # dart_rev: |
34 "package_config_tag": "@0.1.3", | 34 "package_config_tag": "@0.1.3", |
35 "path_tag": "@1.3.6", | 35 "path_tag": "@1.3.6", |
36 "charcode_tag": "@1.1.0", | 36 "charcode_tag": "@1.1.0", |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
333 'name': 'GYP', | 333 'name': 'GYP', |
334 'pattern': '.', | 334 'pattern': '.', |
335 'action': [ | 335 'action': [ |
336 'python', | 336 'python', |
337 'sdk/tools/run-ninja.py', | 337 'sdk/tools/run-ninja.py', |
338 '-C', | 338 '-C', |
339 'sdk', | 339 'sdk', |
340 ], | 340 ], |
341 }, | 341 }, |
342 ] | 342 ] |
OLD | NEW |