| 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 # 3. Upload new binaries and update the `third_party/bin` sha-hash-files as | 26 # 3. Upload new binaries and update the `third_party/bin` and |
| 27 # described in `third_party/bin/README.md`. | 27 # `tools/testing/bin/` sha-hash-files as described in |
| 28 # `third_party/bin/README.md`. |
| 28 "dart_rev": "@34357cdad108dcba734949bd13bd28c76ea285e0", | 29 "dart_rev": "@34357cdad108dcba734949bd13bd28c76ea285e0", |
| 29 | 30 |
| 30 # Please copy these package revisions from ../dart/DEPS when updating | 31 # Please copy these package revisions from ../dart/DEPS when updating |
| 31 # dart_rev: | 32 # dart_rev: |
| 32 "package_config_tag": "@0.1.3", | 33 "package_config_tag": "@0.1.3", |
| 33 "path_tag": "@1.3.6", | 34 "path_tag": "@1.3.6", |
| 34 "charcode_tag": "@1.1.0", | 35 "charcode_tag": "@1.1.0", |
| 35 "args_tag": "@0.13.0", | 36 "args_tag": "@0.13.0", |
| 36 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", | 37 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", |
| 37 "pub_semver_tag": "@1.2.1", | 38 "pub_semver_tag": "@1.2.1", |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 ], | 216 ], |
| 216 }, | 217 }, |
| 217 { | 218 { |
| 218 'name': 'GYP', | 219 'name': 'GYP', |
| 219 'pattern': '.', | 220 'pattern': '.', |
| 220 'action': [ | 221 'action': [ |
| 221 'ninja', '-C', 'fletch', | 222 'ninja', '-C', 'fletch', |
| 222 ], | 223 ], |
| 223 }, | 224 }, |
| 224 ] | 225 ] |
| OLD | NEW |