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': 'most', | 8 'target_name': 'most', |
9 'type': 'none', | 9 'type': 'none', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 'compiler', | 61 'compiler', |
62 ], | 62 ], |
63 'actions': [ | 63 'actions': [ |
64 { | 64 { |
65 'action_name': 'create_sdk_py', | 65 'action_name': 'create_sdk_py', |
66 'inputs': [ | 66 'inputs': [ |
67 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', | 67 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', |
68 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', | 68 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
69 'tools/create_sdk.py', | 69 'tools/create_sdk.py', |
70 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 70 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 71 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', |
71 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', | 72 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
72 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', | 73 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', |
73 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', | 74 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', |
74 '<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar', | 75 '<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar', |
75 ], | 76 ], |
76 'outputs': [ | 77 'outputs': [ |
77 '<(PRODUCT_DIR)/dart-sdk/README', | 78 '<(PRODUCT_DIR)/dart-sdk/README', |
78 ], | 79 ], |
79 'action': [ | 80 'action': [ |
80 'python', | 81 'python', |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 }, | 222 }, |
222 { | 223 { |
223 'target_name': 'packages', | 224 'target_name': 'packages', |
224 'type': 'none', | 225 'type': 'none', |
225 'dependencies': [ | 226 'dependencies': [ |
226 'pkg/pkg.gyp:pkg_packages', | 227 'pkg/pkg.gyp:pkg_packages', |
227 ], | 228 ], |
228 }, | 229 }, |
229 ], | 230 ], |
230 } | 231 } |
OLD | NEW |