| 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 10 matching lines...) Expand all Loading... |
| 21 'runtime/dart-runtime.gyp:process_test', | 21 'runtime/dart-runtime.gyp:process_test', |
| 22 ], | 22 ], |
| 23 }, | 23 }, |
| 24 { | 24 { |
| 25 # Build the SDK. This target is separate from upload_sdk as the | 25 # Build the SDK. This target is separate from upload_sdk as the |
| 26 # editor needs to build the SDK without uploading it. | 26 # editor needs to build the SDK without uploading it. |
| 27 'target_name': 'create_sdk', | 27 'target_name': 'create_sdk', |
| 28 'type': 'none', | 28 'type': 'none', |
| 29 'dependencies': [ | 29 'dependencies': [ |
| 30 'runtime/dart-runtime.gyp:dart', | 30 'runtime/dart-runtime.gyp:dart', |
| 31 'dart2js', |
| 31 ], | 32 ], |
| 32 'actions': [ | 33 'actions': [ |
| 33 { | 34 { |
| 34 'action_name': 'create_sdk_py', | 35 'action_name': 'create_sdk_py', |
| 35 'inputs': [ | 36 'inputs': [ |
| 36 '<!@(["python", "frog/scripts/list_frog_files.py", "frog"])', | 37 '<!@(["python", "tools/list_files.py", "\\.dart$", "lib"])', |
| 37 # TODO(dgrove) - change these to dependencies and add dom | |
| 38 # dependences once issues 754 and 755 are fixed | |
| 39 'lib/html/html_frog.dart', | |
| 40 'lib/html/html_dartium.dart', | |
| 41 'lib/dom/dom.dart', | |
| 42 'lib/dom/src', | |
| 43 'frog/scripts/bootstrap/frogc', | 38 'frog/scripts/bootstrap/frogc', |
| 44 'tools/create_sdk.py', | 39 'tools/create_sdk.py', |
| 40 '<(PRODUCT_DIR)/frog/bin/frog', |
| 45 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 41 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 42 '<(PRODUCT_DIR)/dart2js', |
| 43 '<(PRODUCT_DIR)/dart2js.bat', |
| 46 ], | 44 ], |
| 47 'outputs': [ | 45 'outputs': [ |
| 48 '<(PRODUCT_DIR)/dart-sdk/create.stamp', | 46 '<(PRODUCT_DIR)/dart-sdk/create.stamp', |
| 49 ], | 47 ], |
| 50 'action': [ | 48 'action': [ |
| 51 'python', | 49 'python', |
| 52 'tools/create_sdk.py', | 50 'tools/create_sdk.py', |
| 53 '<(PRODUCT_DIR)/dart-sdk', | 51 '<(PRODUCT_DIR)/dart-sdk', |
| 54 ], | 52 ], |
| 55 'message': 'Creating SDK.', | 53 'message': 'Creating SDK.', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 }, | 94 }, |
| 97 { | 95 { |
| 98 'target_name': 'api_docs', | 96 'target_name': 'api_docs', |
| 99 'type': 'none', | 97 'type': 'none', |
| 100 'dependencies': [ | 98 'dependencies': [ |
| 101 'utils/apidoc/apidoc.gyp:api_docs', | 99 'utils/apidoc/apidoc.gyp:api_docs', |
| 102 ], | 100 ], |
| 103 } | 101 } |
| 104 ], | 102 ], |
| 105 } | 103 } |
| OLD | NEW |