| OLD | NEW |
| 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, 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': 'create_sdk_internal', | 8 'target_name': 'create_sdk_internal', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 'inputs': [ | 21 'inputs': [ |
| 22 # This is neccessary because we have all the pub test files inside | 22 # This is neccessary because we have all the pub test files inside |
| 23 # the pub directory instead of in tests/pub. Xcode can only handle | 23 # the pub directory instead of in tests/pub. Xcode can only handle |
| 24 # a certain amount of files in one list (also depending on the | 24 # a certain amount of files in one list (also depending on the |
| 25 # length of the path from where you run). This regexp excludes | 25 # length of the path from where you run). This regexp excludes |
| 26 # pub/test | 26 # pub/test |
| 27 '<!@(["python", "tools/list_files.py",' | 27 '<!@(["python", "tools/list_files.py",' |
| 28 '"^(?!.*pub/test).*dart$",' | 28 '"^(?!.*pub/test).*dart$",' |
| 29 '"sdk/lib"])', | 29 '"sdk/lib"])', |
| 30 '<!@(["python", "tools/list_files.py", "", ' | 30 '<!@(["python", "tools/list_files.py", "", ' |
| 31 '"sdk/lib/_internal/compiler/js_lib/preambles"])', | 31 '"sdk/lib/_internal/js_runtime/lib/preambles"])', |
| 32 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', | 32 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
| 33 'tools/create_sdk.py', | 33 'tools/create_sdk.py', |
| 34 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 34 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 35 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', | 35 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', |
| 36 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', | 36 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
| 37 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', | 37 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', |
| 38 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot', | 38 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot', |
| 39 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', | 39 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', |
| 40 '<(SHARED_INTERMEDIATE_DIR)/analysis_server.dart.snapshot', | 40 '<(SHARED_INTERMEDIATE_DIR)/analysis_server.dart.snapshot', |
| 41 'tools/VERSION' | 41 'tools/VERSION' |
| 42 ], | 42 ], |
| 43 'outputs': [ | 43 'outputs': [ |
| 44 '<(PRODUCT_DIR)/dart-sdk/README', | 44 '<(PRODUCT_DIR)/dart-sdk/README', |
| 45 ], | 45 ], |
| 46 'action': [ | 46 'action': [ |
| 47 'python', | 47 'python', |
| 48 'tools/create_sdk.py', | 48 'tools/create_sdk.py', |
| 49 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', | 49 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', |
| 50 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' | 50 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' |
| 51 ], | 51 ], |
| 52 'message': 'Creating SDK.', | 52 'message': 'Creating SDK.', |
| 53 }, | 53 }, |
| 54 ], | 54 ], |
| 55 }, | 55 }, |
| 56 ], | 56 ], |
| 57 } | 57 } |
| OLD | NEW |