| 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 "instrumentation_client_rev": "@33c7bf19f6db1340a999e45dd8fb14d684330d3e", | 25 "instrumentation_client_rev": "@33c7bf19f6db1340a999e45dd8fb14d684330d3e", |
| 26 | 26 |
| 27 # When updating this, please remember: | 27 # When updating this, please remember: |
| 28 # 1. to use a commit on the branch "_temporary_fletch_patches". | 28 # 1. to use a commit on the branch "_temporary_dartino_patches". |
| 29 # 2. update package revisions below. | 29 # 2. update package revisions below. |
| 30 # 3. Upload new binaries and update the `third_party/bin` sha-hash-files as | 30 # 3. Upload new binaries and update the `third_party/bin` sha-hash-files as |
| 31 # described in `third_party/bin/README.md`. | 31 # described in `third_party/bin/README.md`. |
| 32 "dart_rev": "@0cc4be4b0462635dc198d96974e152abbd86ff6f", | 32 "dart_rev": "@0cc4be4b0462635dc198d96974e152abbd86ff6f", |
| 33 | 33 |
| 34 # Please copy these package revisions from ../dart/DEPS when updating | 34 # Please copy these package revisions from ../dart/DEPS when updating |
| 35 # dart_rev: | 35 # dart_rev: |
| 36 "package_config_tag": "@0.1.3", | 36 "package_config_tag": "@0.1.3", |
| 37 "path_tag": "@1.3.6", | 37 "path_tag": "@1.3.6", |
| 38 "charcode_tag": "@1.1.0", | 38 "charcode_tag": "@1.1.0", |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 'name': 'GYP', | 339 'name': 'GYP', |
| 340 'pattern': '.', | 340 'pattern': '.', |
| 341 'action': [ | 341 'action': [ |
| 342 'python', | 342 'python', |
| 343 'sdk/tools/run-ninja.py', | 343 'sdk/tools/run-ninja.py', |
| 344 '-C', | 344 '-C', |
| 345 'sdk', | 345 'sdk', |
| 346 ], | 346 ], |
| 347 }, | 347 }, |
| 348 ] | 348 ] |
| OLD | NEW |