| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 # TODO(zundel): uncomment once build machines have prerequisite | 57 'conditions' : [ |
| 58 # software installed. Also update create_sdk.py | 58 ['OS=="linux"', { |
| 59 # 'conditions' : [ | 59 'dependencies': [ |
| 60 # ['OS=="linux"', { | 60 'compiler', |
| 61 # 'dependencies': [ | 61 ], |
| 62 # 'compiler', | 62 'inputs' : [ |
| 63 # ], | 63 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer' |
| 64 # 'inputs' : [ | 64 ], |
| 65 # '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer' | 65 }], |
| 66 # ], | 66 ], |
| 67 # }], | |
| 68 # ], | |
| 69 }, | 67 }, |
| 70 { | 68 { |
| 71 # Upload the SDK. This target is separate from create_sdk as the | 69 # Upload the SDK. This target is separate from create_sdk as the |
| 72 # editor needs to build the SDK without uploading it. | 70 # editor needs to build the SDK without uploading it. |
| 73 'target_name': 'upload_sdk', | 71 'target_name': 'upload_sdk', |
| 74 'type': 'none', | 72 'type': 'none', |
| 75 'dependencies': [ | 73 'dependencies': [ |
| 76 'create_sdk', | 74 'create_sdk', |
| 77 ], | 75 ], |
| 78 'actions': [ | 76 'actions': [ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 107 }, | 105 }, |
| 108 { | 106 { |
| 109 'target_name': 'api_docs', | 107 'target_name': 'api_docs', |
| 110 'type': 'none', | 108 'type': 'none', |
| 111 'dependencies': [ | 109 'dependencies': [ |
| 112 'utils/apidoc/apidoc.gyp:api_docs', | 110 'utils/apidoc/apidoc.gyp:api_docs', |
| 113 ], | 111 ], |
| 114 } | 112 } |
| 115 ], | 113 ], |
| 116 } | 114 } |
| OLD | NEW |