| 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 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 # Chromium git | 24 # Chromium git |
| 25 "chromium_git": "https://chromium.googlesource.com", | 25 "chromium_git": "https://chromium.googlesource.com", |
| 26 | 26 |
| 27 # Only use this temporarily while waiting for a mirror for a new package. | 27 # Only use this temporarily while waiting for a mirror for a new package. |
| 28 "github_dartlang": "https://github.com/dart-lang/%s.git", | 28 "github_dartlang": "https://github.com/dart-lang/%s.git", |
| 29 | 29 |
| 30 "github_testing": "https://github.com/peter-ahe-google/testing.git", | 30 "github_testing": "https://github.com/peter-ahe-google/testing.git", |
| 31 | 31 |
| 32 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", | 32 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", |
| 33 "co19_rev": "@cf831f58ac65f68f14824c0b1515f6b7814d94b8", | 33 "co19_rev": "@f05d5aee5930bfd487aedf832fbd7b832f502b15", |
| 34 | 34 |
| 35 # Revisions of GN related dependencies. | 35 # Revisions of GN related dependencies. |
| 36 "buildtools_revision": "@39b1db2ab4aa4b2ccaa263c29bdf63e7c1ee28aa", | 36 "buildtools_revision": "@39b1db2ab4aa4b2ccaa263c29bdf63e7c1ee28aa", |
| 37 "clang_format_rev": "@0ed791d1387a3c9146ea6c453c646f3c0fc97784", | 37 "clang_format_rev": "@0ed791d1387a3c9146ea6c453c646f3c0fc97784", |
| 38 | 38 |
| 39 "gperftools_revision": "@02eeed29df112728564a5dde6417fa4622b57a06", | 39 "gperftools_revision": "@02eeed29df112728564a5dde6417fa4622b57a06", |
| 40 | 40 |
| 41 # Revisions of /third_party/* dependencies. | 41 # Revisions of /third_party/* dependencies. |
| 42 "args_tag": "@0.13.5", | 42 "args_tag": "@0.13.5", |
| 43 "async_tag": "@1.11.3", | 43 "async_tag": "@1.11.3", |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 # Update the Windows toolchain if necessary. | 597 # Update the Windows toolchain if necessary. |
| 598 'name': 'win_toolchain', | 598 'name': 'win_toolchain', |
| 599 'pattern': '.', | 599 'pattern': '.', |
| 600 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], | 600 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], |
| 601 }, | 601 }, |
| 602 { | 602 { |
| 603 "pattern": ".", | 603 "pattern": ".", |
| 604 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 604 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
| 605 }, | 605 }, |
| 606 ] | 606 ] |
| OLD | NEW |