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 30 matching lines...) Expand all Loading... |
41 'utils/compiler/compiler.gyp:dart2js', | 41 'utils/compiler/compiler.gyp:dart2js', |
42 'utils/pub/pub.gyp:pub', | 42 'utils/pub/pub.gyp:pub', |
43 'dartfmt', | 43 'dartfmt', |
44 'analyzer', | 44 'analyzer', |
45 ], | 45 ], |
46 'actions': [ | 46 'actions': [ |
47 { | 47 { |
48 'action_name': 'create_sdk_py', | 48 'action_name': 'create_sdk_py', |
49 'inputs': [ | 49 'inputs': [ |
50 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', | 50 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', |
| 51 '<!@(["python", "tools/list_files.py", "", ' |
| 52 '"sdk/lib/_internal/lib/preambles"])', |
51 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', | 53 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
52 'tools/create_sdk.py', | 54 'tools/create_sdk.py', |
53 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 55 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
54 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', | 56 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', |
55 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', | 57 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
56 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', | 58 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', |
57 '<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar', | 59 '<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar', |
58 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', | 60 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', |
59 'tools/VERSION' | 61 'tools/VERSION' |
60 ], | 62 ], |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 { | 195 { |
194 'target_name': 'try', | 196 'target_name': 'try', |
195 'type': 'none', | 197 'type': 'none', |
196 'dependencies': [ | 198 'dependencies': [ |
197 'create_sdk', | 199 'create_sdk', |
198 'site/try/build_try.gyp:try_site', | 200 'site/try/build_try.gyp:try_site', |
199 ], | 201 ], |
200 }, | 202 }, |
201 ], | 203 ], |
202 } | 204 } |
OLD | NEW |