| 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 22 matching lines...) Expand all Loading... |
| 33 'target_name': 'create_sdk', | 33 'target_name': 'create_sdk', |
| 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$", "lib"])', | 43 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', |
| 44 '<!@(["python", "tools/list_files.py", "import_.*\\.config$", "lib/c
onfig"])', | |
| 45 'tools/create_sdk.py', | 44 'tools/create_sdk.py', |
| 46 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 45 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 47 '<(PRODUCT_DIR)/dart2js', | 46 '<(PRODUCT_DIR)/dart2js', |
| 48 '<(PRODUCT_DIR)/dart2js.bat', | 47 '<(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', |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 }, | 134 }, |
| 136 { | 135 { |
| 137 'target_name': 'packages', | 136 'target_name': 'packages', |
| 138 'type': 'none', | 137 'type': 'none', |
| 139 'dependencies': [ | 138 'dependencies': [ |
| 140 'pkg/pkg.gyp:pkg_packages', | 139 'pkg/pkg.gyp:pkg_packages', |
| 141 ], | 140 ], |
| 142 }, | 141 }, |
| 143 ], | 142 ], |
| 144 } | 143 } |
| OLD | NEW |