| 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': [ |
| 11 'compiler/dart-compiler.gyp:dartc', | 11 'compiler/dart-compiler.gyp:dart_analyzer', |
| 12 ], | 12 ], |
| 13 'actions': [] | 13 'actions': [] |
| 14 }, | 14 }, |
| 15 { | 15 { |
| 16 'target_name': 'runtime', | 16 'target_name': 'runtime', |
| 17 'type': 'none', | 17 'type': 'none', |
| 18 'dependencies': [ | 18 'dependencies': [ |
| 19 'runtime/dart-runtime.gyp:dart', | 19 'runtime/dart-runtime.gyp:dart', |
| 20 'runtime/dart-runtime.gyp:run_vm_tests', | 20 'runtime/dart-runtime.gyp:run_vm_tests', |
| 21 'runtime/dart-runtime.gyp:process_test', | 21 'runtime/dart-runtime.gyp:process_test', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 47 '<(PRODUCT_DIR)/dart-sdk/create.stamp', | 47 '<(PRODUCT_DIR)/dart-sdk/create.stamp', |
| 48 ], | 48 ], |
| 49 'action': [ | 49 'action': [ |
| 50 'python', | 50 'python', |
| 51 'tools/create_sdk.py', | 51 'tools/create_sdk.py', |
| 52 '<(PRODUCT_DIR)/dart-sdk', | 52 '<(PRODUCT_DIR)/dart-sdk', |
| 53 ], | 53 ], |
| 54 'message': 'Creating SDK.', | 54 'message': 'Creating SDK.', |
| 55 }, | 55 }, |
| 56 ], | 56 ], |
| 57 'conditions' : [ |
| 58 ['OS=="linux"', { |
| 59 'dependencies': [ |
| 60 # TODO(zundel): uncomment once build machines have prerequisite |
| 61 # software installed. Also update create_sdk.py |
| 62 # 'compiler', |
| 63 ], |
| 64 'inputs' : [ |
| 65 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer' |
| 66 ], |
| 67 }], |
| 68 ], |
| 57 }, | 69 }, |
| 58 { | 70 { |
| 59 # Upload the SDK. This target is separate from create_sdk as the | 71 # Upload the SDK. This target is separate from create_sdk as the |
| 60 # editor needs to build the SDK without uploading it. | 72 # editor needs to build the SDK without uploading it. |
| 61 'target_name': 'upload_sdk', | 73 'target_name': 'upload_sdk', |
| 62 'type': 'none', | 74 'type': 'none', |
| 63 'dependencies': [ | 75 'dependencies': [ |
| 64 'create_sdk', | 76 'create_sdk', |
| 65 ], | 77 ], |
| 66 'actions': [ | 78 'actions': [ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 95 }, | 107 }, |
| 96 { | 108 { |
| 97 'target_name': 'api_docs', | 109 'target_name': 'api_docs', |
| 98 'type': 'none', | 110 'type': 'none', |
| 99 'dependencies': [ | 111 'dependencies': [ |
| 100 'utils/apidoc/apidoc.gyp:api_docs', | 112 'utils/apidoc/apidoc.gyp:api_docs', |
| 101 ], | 113 ], |
| 102 } | 114 } |
| 103 ], | 115 ], |
| 104 } | 116 } |
| OLD | NEW |