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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'dart_dir': '../..', | 7 'dart_dir': '../..', |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'dart2js', | 11 'target_name': 'dart2js', |
12 'type': 'none', | 12 'type': 'none', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../../runtime/dart-runtime.gyp:dart', | 14 '../../runtime/dart-runtime.gyp:dart', |
| 15 '../../third_party/v8/src/d8.gyp:d8', |
15 ], | 16 ], |
16 'actions': [ | 17 'actions': [ |
17 { | 18 { |
18 'action_name': 'build_dart2js', | 19 'action_name': 'build_dart2js', |
19 'inputs': [ | 20 'inputs': [ |
20 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 21 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
21 'build_helper.dart', | 22 'build_helper.dart', |
22 ], | 23 ], |
23 'outputs': [ | 24 'outputs': [ |
24 '<(PRODUCT_DIR)/dart2js', | 25 '<(PRODUCT_DIR)/dart2js', |
(...skipping 13 matching lines...) Expand all Loading... |
38 '<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 39 '<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
39 'dart2js', | 40 'dart2js', |
40 'dart2js_developer', | 41 'dart2js_developer', |
41 '<(dart_dir)', | 42 '<(dart_dir)', |
42 ], | 43 ], |
43 }, | 44 }, |
44 ], | 45 ], |
45 }, | 46 }, |
46 ], | 47 ], |
47 } | 48 } |
OLD | NEW |