| 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   # Use this googlecode_url variable only if there is an internal mirror for it. |    6   # Use this googlecode_url variable only if there is an internal mirror for it. | 
|    7   # If you do not know, use the full path while defining your new deps entry. |    7   # If you do not know, use the full path while defining your new deps entry. | 
|    8   "googlecode_url": "http://%s.googlecode.com/svn", |    8   "googlecode_url": "http://%s.googlecode.com/svn", | 
|    9  |    9  | 
|   10   "gyp_rev": "@1752", |   10   "gyp_rev": "@1752", | 
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   94   "dart/third_party/d8": "/third_party/d8" + Var("d8_rev"), |   94   "dart/third_party/d8": "/third_party/d8" + Var("d8_rev"), | 
|   95   "dart/third_party/WebCore": "/third_party/WebCore" + Var("WebCore_rev"), |   95   "dart/third_party/WebCore": "/third_party/WebCore" + Var("WebCore_rev"), | 
|   96   "dart/third_party/weberknecht": |   96   "dart/third_party/weberknecht": | 
|   97       "/third_party/weberknecht" + Var("weberknecht_rev"), |   97       "/third_party/weberknecht" + Var("weberknecht_rev"), | 
|   98 } |   98 } | 
|   99  |   99  | 
|  100 deps_os = { |  100 deps_os = { | 
|  101   "android": { |  101   "android": { | 
|  102     "dart/third_party//android_tools": |  102     "dart/third_party//android_tools": | 
|  103       Var("chromium_git") + "/android_tools.git" + |  103       Var("chromium_git") + "/android_tools.git" + | 
|  104       "@ebd740fc3d55dda34d9322c8c5f7749302734325", |  104       "@e504b737693e96816b40e6ae80d177352c079c18", | 
|  105   }, |  105   }, | 
|  106   "win": { |  106   "win": { | 
|  107     "dart/third_party/cygwin": |  107     "dart/third_party/cygwin": | 
|  108       Var("chromium_url") + "/trunk/deps/third_party/cygwin@66844", |  108       Var("chromium_url") + "/trunk/deps/third_party/cygwin@66844", | 
|  109     "dart/third_party/drt_resources": |  109     "dart/third_party/drt_resources": | 
|  110       Var("chromium_url") + |  110       Var("chromium_url") + | 
|  111       "/trunk/src/webkit/tools/test_shell/resources@157099", |  111       "/trunk/src/webkit/tools/test_shell/resources@157099", | 
|  112   }, |  112   }, | 
|  113   "unix": { |  113   "unix": { | 
|  114     "dart/third_party/clang": "/third_party/clang" + Var("clang_rev"), |  114     "dart/third_party/clang": "/third_party/clang" + Var("clang_rev"), | 
|  115   }, |  115   }, | 
|  116 } |  116 } | 
|  117  |  117  | 
|  118 # TODO(iposva): Move the necessary tools so that hooks can be run |  118 # TODO(iposva): Move the necessary tools so that hooks can be run | 
|  119 # without the runtime being available. |  119 # without the runtime being available. | 
|  120 hooks = [ |  120 hooks = [ | 
|  121   { |  121   { | 
|  122     "pattern": ".", |  122     "pattern": ".", | 
|  123     "action": ["python", "dart/tools/compiler_scripts/generate_my_projects.py"], |  123     "action": ["python", "dart/tools/compiler_scripts/generate_my_projects.py"], | 
|  124   }, |  124   }, | 
|  125   { |  125   { | 
|  126     "pattern": ".", |  126     "pattern": ".", | 
|  127     "action": ["python", "dart/editor/build/generate_sources.py"], |  127     "action": ["python", "dart/editor/build/generate_sources.py"], | 
|  128   }, |  128   }, | 
|  129   { |  129   { | 
|  130     "pattern": ".", |  130     "pattern": ".", | 
|  131     "action": ["python", "dart/tools/gyp_dart.py"], |  131     "action": ["python", "dart/tools/gyp_dart.py"], | 
|  132   }, |  132   }, | 
|  133 ] |  133 ] | 
| OLD | NEW |