Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 "gyp_rev": "@937", | 6 "gyp_rev": "@937", |
| 7 "co19_rev": "@164", | 7 "co19_rev": "@164", |
| 8 "co19_repo": "http://co19.googlecode.com/svn/trunk/co19/", | 8 "co19_repo": "http://co19.googlecode.com/svn/trunk/co19/", |
| 9 "chromium_url": "http://src.chromium.org/svn", | 9 "chromium_url": "http://src.chromium.org/svn", |
| 10 "webkit_url": "http://src.chromium.org/multivm/trunk/webkit", | |
|
Anton Muhin
2012/03/27 15:06:40
should we checkout from our fork or from main WebC
| |
| 11 "webkit_rev": "@313", | |
| 10 } | 12 } |
| 11 | 13 |
| 12 deps = { | 14 deps = { |
| 13 "dart": | 15 "dart": |
| 14 "/branches/bleeding_edge/dart", | 16 "/branches/bleeding_edge/dart", |
| 15 | 17 |
| 16 # Stuff needed for GYP to run. | 18 # Stuff needed for GYP to run. |
| 17 "dart/third_party/gyp": | 19 "dart/third_party/gyp": |
| 18 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), | 20 "http://gyp.googlecode.com/svn/trunk" + Var("gyp_rev"), |
| 19 | 21 |
| 20 "dart/third_party/v8": | 22 "dart/third_party/v8": |
| 21 "http://v8.googlecode.com/svn/branches/3.4", | 23 "http://v8.googlecode.com/svn/branches/3.4", |
| 22 | 24 |
| 23 "dart/tests/co19/src": | 25 "dart/tests/co19/src": |
| 24 Var("co19_repo") + "tests/co19/src" + Var("co19_rev"), | 26 Var("co19_repo") + "tests/co19/src" + Var("co19_rev"), |
| 27 | |
| 28 "dart/third_party/WebCore": | |
| 29 Var("webkit_url") + "/Source/WebCore" + Var("webkit_rev"), | |
| 25 } | 30 } |
| 26 | 31 |
| 27 deps_os = { | 32 deps_os = { |
| 28 "win": { | 33 "win": { |
| 29 "dart/third_party/cygwin": | 34 "dart/third_party/cygwin": |
| 30 Var("chromium_url") + "/trunk/deps/third_party/cygwin@66844", | 35 Var("chromium_url") + "/trunk/deps/third_party/cygwin@66844", |
| 31 }, | 36 }, |
| 32 } | 37 } |
| 33 | 38 |
| 34 # TODO(iposva): Move the necessary tools so that hooks can be run | 39 # TODO(iposva): Move the necessary tools so that hooks can be run |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 57 { | 62 { |
| 58 "pattern": ".", | 63 "pattern": ".", |
| 59 "action": ["python", "dart/tools/generate_projects.py", "frog"], | 64 "action": ["python", "dart/tools/generate_projects.py", "frog"], |
| 60 }, | 65 }, |
| 61 { | 66 { |
| 62 "pattern": ".", | 67 "pattern": ".", |
| 63 "action": ["python", "dart/third_party/gyp/gyp", "--depth=dart", | 68 "action": ["python", "dart/third_party/gyp/gyp", "--depth=dart", |
| 64 "-Idart/tools/gyp/all.gypi", "dart/dart.gyp"], | 69 "-Idart/tools/gyp/all.gypi", "dart/dart.gyp"], |
| 65 }, | 70 }, |
| 66 ] | 71 ] |
| OLD | NEW |