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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'compiler', | 8 'target_name': 'compiler', |
9 'type': 'none', | 9 'type': 'none', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 23 matching lines...) Expand all Loading... |
34 'type': 'none', | 34 'type': 'none', |
35 'dependencies': [ | 35 'dependencies': [ |
36 'runtime/dart-runtime.gyp:dart', | 36 'runtime/dart-runtime.gyp:dart', |
37 'utils/compiler/compiler.gyp:dart2js', | 37 'utils/compiler/compiler.gyp:dart2js', |
38 ], | 38 ], |
39 'actions': [ | 39 'actions': [ |
40 { | 40 { |
41 'action_name': 'create_sdk_py', | 41 'action_name': 'create_sdk_py', |
42 'inputs': [ | 42 'inputs': [ |
43 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', | 43 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', |
| 44 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
44 'tools/create_sdk.py', | 45 'tools/create_sdk.py', |
45 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 46 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
46 '<(PRODUCT_DIR)/dart2js', | 47 '<(PRODUCT_DIR)/dart2js', |
47 '<(PRODUCT_DIR)/dart2js.bat', | 48 '<(PRODUCT_DIR)/dart2js.bat', |
48 ], | 49 ], |
49 'outputs': [ | 50 'outputs': [ |
50 '<(PRODUCT_DIR)/dart-sdk/README', | 51 '<(PRODUCT_DIR)/dart-sdk/README', |
51 ], | 52 ], |
52 'action': [ | 53 'action': [ |
53 'python', | 54 'python', |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 }, | 135 }, |
135 { | 136 { |
136 'target_name': 'packages', | 137 'target_name': 'packages', |
137 'type': 'none', | 138 'type': 'none', |
138 'dependencies': [ | 139 'dependencies': [ |
139 'pkg/pkg.gyp:pkg_packages', | 140 'pkg/pkg.gyp:pkg_packages', |
140 ], | 141 ], |
141 }, | 142 }, |
142 ], | 143 ], |
143 } | 144 } |
OLD | NEW |