| 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 dart checkout. This is normally | 6 # The dart_root is the root of our dart checkout. This is normally |
| 7 # simply dart, but if using special gclient specs it can be different. | 7 # simply dart, but if using special gclient specs it can be different. |
| 8 "dart_root": "dart", | 8 "dart_root": "dart", |
| 9 | 9 |
| 10 # The svn location to pull out dependencies from | 10 # The svn location to pull out dependencies from |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "commons-lang_rev" : "@33092", | 41 "commons-lang_rev" : "@33092", |
| 42 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", | 42 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", |
| 43 "csslib_tag" : "@0.12.0", | 43 "csslib_tag" : "@0.12.0", |
| 44 "async_await_rev" : "@8b401a9f2e5e81dca5f70dbe7564112a0823dee6", | 44 "async_await_rev" : "@8b401a9f2e5e81dca5f70dbe7564112a0823dee6", |
| 45 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", | 45 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", |
| 46 "dart_style_tag": "@0.1.8", | 46 "dart_style_tag": "@0.1.8", |
| 47 "d8_rev" : "@39739", | 47 "d8_rev" : "@39739", |
| 48 "eclipse_rev" : "@38742", | 48 "eclipse_rev" : "@38742", |
| 49 "fake_async_rev" : "@38614", | 49 "fake_async_rev" : "@38614", |
| 50 "fest_rev" : "@19997", | 50 "fest_rev" : "@19997", |
| 51 "firefox_jsshell_rev" : "@44282", | 51 "firefox_jsshell_rev" : "@45554", |
| 52 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", | 52 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", |
| 53 "gson_rev" : "@36048", | 53 "gson_rev" : "@36048", |
| 54 "gsutil_rev" : "@33376", | 54 "gsutil_rev" : "@33376", |
| 55 "guava_rev" : "@19997", | 55 "guava_rev" : "@19997", |
| 56 "hamcrest_rev" : "@19997", | 56 "hamcrest_rev" : "@19997", |
| 57 "html_tag" : "@0.12.1+1", | 57 "html_tag" : "@0.12.1+1", |
| 58 "http_rev" : "@9b93e1542c753090c50b46ef1592d44bc858bfe7", | 58 "http_rev" : "@9b93e1542c753090c50b46ef1592d44bc858bfe7", |
| 59 "http_multi_server_tag" : "@1.3.2", | 59 "http_multi_server_tag" : "@1.3.2", |
| 60 "http_parser_rev" : "@8b179e36aba985208e4c5fb15cfddd386b6370a4", | 60 "http_parser_rev" : "@8b179e36aba985208e4c5fb15cfddd386b6370a4", |
| 61 "http_throttle_rev" : "@a81f08be942cdd608883c7b67795c12226abc235", | 61 "http_throttle_rev" : "@a81f08be942cdd608883c7b67795c12226abc235", |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 }, | 351 }, |
| 352 { | 352 { |
| 353 "pattern": ".", | 353 "pattern": ".", |
| 354 "action": ["python", Var("dart_root") + "/editor/build/generate_sources.py"]
, | 354 "action": ["python", Var("dart_root") + "/editor/build/generate_sources.py"]
, |
| 355 }, | 355 }, |
| 356 { | 356 { |
| 357 "pattern": ".", | 357 "pattern": ".", |
| 358 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | 358 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
| 359 }, | 359 }, |
| 360 ] | 360 ] |
| OLD | NEW |