| 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 26 matching lines...) Expand all Loading... |
| 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 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', |
| 45 'tools/create_sdk.py', | 45 'tools/create_sdk.py', |
| 46 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 46 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 47 '<(PRODUCT_DIR)/dart2js', | 47 '<(PRODUCT_DIR)/dart2js.snapshot', |
| 48 '<(PRODUCT_DIR)/dart2js.bat', | |
| 49 ], | 48 ], |
| 50 'outputs': [ | 49 'outputs': [ |
| 51 '<(PRODUCT_DIR)/dart-sdk/README', | 50 '<(PRODUCT_DIR)/dart-sdk/README', |
| 52 ], | 51 ], |
| 53 'action': [ | 52 'action': [ |
| 54 'python', | 53 'python', |
| 55 'tools/create_sdk.py', | 54 'tools/create_sdk.py', |
| 56 '<(PRODUCT_DIR)/dart-sdk', | 55 '<(PRODUCT_DIR)/dart-sdk', |
| 57 ], | 56 ], |
| 58 'message': 'Creating SDK.', | 57 'message': 'Creating SDK.', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 }, | 145 }, |
| 147 { | 146 { |
| 148 'target_name': 'packages', | 147 'target_name': 'packages', |
| 149 'type': 'none', | 148 'type': 'none', |
| 150 'dependencies': [ | 149 'dependencies': [ |
| 151 'pkg/pkg.gyp:pkg_packages', | 150 'pkg/pkg.gyp:pkg_packages', |
| 152 ], | 151 ], |
| 153 }, | 152 }, |
| 154 ], | 153 ], |
| 155 } | 154 } |
| OLD | NEW |