| 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 18 matching lines...) Expand all Loading... |
| 29 'type': 'none', | 29 'type': 'none', |
| 30 'dependencies': [ | 30 'dependencies': [ |
| 31 'runtime/dart-runtime.gyp:dart', | 31 'runtime/dart-runtime.gyp:dart', |
| 32 'dart2js', | 32 'dart2js', |
| 33 ], | 33 ], |
| 34 'actions': [ | 34 'actions': [ |
| 35 { | 35 { |
| 36 'action_name': 'create_sdk_py', | 36 'action_name': 'create_sdk_py', |
| 37 'inputs': [ | 37 'inputs': [ |
| 38 '<!@(["python", "tools/list_files.py", "\\.dart$", "lib"])', | 38 '<!@(["python", "tools/list_files.py", "\\.dart$", "lib"])', |
| 39 'frog/scripts/bootstrap/frogc', | |
| 40 'tools/create_sdk.py', | 39 'tools/create_sdk.py', |
| 41 '<(PRODUCT_DIR)/frog/bin/frog', | |
| 42 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 40 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 43 '<(PRODUCT_DIR)/dart2js', | 41 '<(PRODUCT_DIR)/dart2js', |
| 44 '<(PRODUCT_DIR)/dart2js.bat', | 42 '<(PRODUCT_DIR)/dart2js.bat', |
| 45 ], | 43 ], |
| 46 'outputs': [ | 44 'outputs': [ |
| 47 '<(PRODUCT_DIR)/dart-sdk/create.stamp', | 45 '<(PRODUCT_DIR)/dart-sdk/create.stamp', |
| 48 ], | 46 ], |
| 49 'action': [ | 47 'action': [ |
| 50 'python', | 48 'python', |
| 51 'tools/create_sdk.py', | 49 'tools/create_sdk.py', |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 '<(PRODUCT_DIR)/dart-sdk' | 91 '<(PRODUCT_DIR)/dart-sdk' |
| 94 ], | 92 ], |
| 95 }, | 93 }, |
| 96 ], | 94 ], |
| 97 }, | 95 }, |
| 98 { | 96 { |
| 99 'target_name': 'dart2js', | 97 'target_name': 'dart2js', |
| 100 'type': 'none', | 98 'type': 'none', |
| 101 'dependencies': [ | 99 'dependencies': [ |
| 102 'utils/compiler/compiler.gyp:dart2js', | 100 'utils/compiler/compiler.gyp:dart2js', |
| 103 | |
| 104 # TODO(ahe): Remove dependency on frog, it is just here to | |
| 105 # simplify frog/scripts/buildbot_annotated_steps.py | |
| 106 # temporarily. | |
| 107 'frog/dart-frog.gyp:frog', | |
| 108 ], | 101 ], |
| 109 }, | 102 }, |
| 110 { | 103 { |
| 111 'target_name': 'api_docs', | 104 'target_name': 'api_docs', |
| 112 'type': 'none', | 105 'type': 'none', |
| 113 'dependencies': [ | 106 'dependencies': [ |
| 114 'utils/apidoc/apidoc.gyp:api_docs', | 107 'utils/apidoc/apidoc.gyp:api_docs', |
| 115 ], | 108 ], |
| 116 } | 109 } |
| 117 ], | 110 ], |
| 118 } | 111 } |
| OLD | NEW |