| 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 11 matching lines...) Expand all Loading... |
| 22 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", | 22 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", |
| 23 | 23 |
| 24 # Chromium git | 24 # Chromium git |
| 25 "chromium_git": "https://chromium.googlesource.com", | 25 "chromium_git": "https://chromium.googlesource.com", |
| 26 "fuchsia_git": "https://fuchsia.googlesource.com", | 26 "fuchsia_git": "https://fuchsia.googlesource.com", |
| 27 | 27 |
| 28 # Only use this temporarily while waiting for a mirror for a new package. | 28 # Only use this temporarily while waiting for a mirror for a new package. |
| 29 "github_dartlang": "https://github.com/dart-lang/%s.git", | 29 "github_dartlang": "https://github.com/dart-lang/%s.git", |
| 30 | 30 |
| 31 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", | 31 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", |
| 32 "co19_rev": "@4af9ef149be554216c5bb16cbac8e50d4c28cdf1", | 32 "co19_rev": "@dec2b67aaab3bb7339b9764049707e71e601da3d", |
| 33 | 33 |
| 34 # Revisions of GN related dependencies. This should match the revision | 34 # Revisions of GN related dependencies. This should match the revision |
| 35 # pulled by Flutter. | 35 # pulled by Flutter. |
| 36 "buildtools_revision": "@057ef89874e3c622248cf99259434fdc683c4e30", | 36 "buildtools_revision": "@057ef89874e3c622248cf99259434fdc683c4e30", |
| 37 | 37 |
| 38 # Scripts that make 'git cl format' work. | 38 # Scripts that make 'git cl format' work. |
| 39 "clang_format_scripts_rev": "@c09c8deeac31f05bd801995c475e7c8070f9ecda", | 39 "clang_format_scripts_rev": "@c09c8deeac31f05bd801995c475e7c8070f9ecda", |
| 40 | 40 |
| 41 "gperftools_revision": "@02eeed29df112728564a5dde6417fa4622b57a06", | 41 "gperftools_revision": "@02eeed29df112728564a5dde6417fa4622b57a06", |
| 42 | 42 |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 # Update the Windows toolchain if necessary. | 489 # Update the Windows toolchain if necessary. |
| 490 'name': 'win_toolchain', | 490 'name': 'win_toolchain', |
| 491 'pattern': '.', | 491 'pattern': '.', |
| 492 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], | 492 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], |
| 493 }, | 493 }, |
| 494 { | 494 { |
| 495 "pattern": ".", | 495 "pattern": ".", |
| 496 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 496 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
| 497 }, | 497 }, |
| 498 ] | 498 ] |
| OLD | NEW |