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', | |
16 ], | 15 ], |
17 'actions': [ | 16 'actions': [ |
18 { | 17 { |
19 'action_name': 'build_dart2js', | 18 'action_name': 'build_dart2js', |
20 'inputs': [ | 19 'inputs': [ |
21 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 20 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
22 'build_helper.dart', | 21 'build_helper.dart', |
23 ], | 22 ], |
24 'outputs': [ | 23 'outputs': [ |
25 '<(PRODUCT_DIR)/dart2js', | 24 '<(PRODUCT_DIR)/dart2js', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 # for dart2js compiler engineers. However, we install the | 67 # for dart2js compiler engineers. However, we install the |
69 # snapshot in the proper location when building the SDK. | 68 # snapshot in the proper location when building the SDK. |
70 '--script_snapshot=<(PRODUCT_DIR)/dart2js.snapshot', | 69 '--script_snapshot=<(PRODUCT_DIR)/dart2js.snapshot', |
71 '../../lib/compiler/implementation/dart2js.dart', | 70 '../../lib/compiler/implementation/dart2js.dart', |
72 ], | 71 ], |
73 }, | 72 }, |
74 ], | 73 ], |
75 }, | 74 }, |
76 ], | 75 ], |
77 } | 76 } |
OLD | NEW |