| 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 26 matching lines...) Expand all Loading... |
| 37 'action_name': 'create_sdk_py', | 37 'action_name': 'create_sdk_py', |
| 38 'inputs': [ | 38 'inputs': [ |
| 39 '<!@(["python", "tools/list_files.py", "\\.dart$", "lib"])', | 39 '<!@(["python", "tools/list_files.py", "\\.dart$", "lib"])', |
| 40 '<!@(["python", "tools/list_files.py", "import_.*\\.config$", "lib/c
onfig"])', | 40 '<!@(["python", "tools/list_files.py", "import_.*\\.config$", "lib/c
onfig"])', |
| 41 'tools/create_sdk.py', | 41 'tools/create_sdk.py', |
| 42 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 42 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
| 43 '<(PRODUCT_DIR)/dart2js', | 43 '<(PRODUCT_DIR)/dart2js', |
| 44 '<(PRODUCT_DIR)/dart2js.bat', | 44 '<(PRODUCT_DIR)/dart2js.bat', |
| 45 ], | 45 ], |
| 46 'outputs': [ | 46 'outputs': [ |
| 47 '<(PRODUCT_DIR)/dart-sdk/create.stamp', | 47 '<(PRODUCT_DIR)/dart-sdk/README', |
| 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 'conditions' : [ | 55 'conditions' : [ |
| 56 ['(OS=="linux" or OS=="mac") ', { | 56 ['(OS=="linux" or OS=="mac") ', { |
| 57 'inputs' : [ | 57 'inputs' : [ |
| (...skipping 16 matching lines...) Expand all Loading... |
| 74 # editor needs to build the SDK without uploading it. | 74 # editor needs to build the SDK without uploading it. |
| 75 'target_name': 'upload_sdk', | 75 'target_name': 'upload_sdk', |
| 76 'type': 'none', | 76 'type': 'none', |
| 77 'dependencies': [ | 77 'dependencies': [ |
| 78 'create_sdk', | 78 'create_sdk', |
| 79 ], | 79 ], |
| 80 'actions': [ | 80 'actions': [ |
| 81 { | 81 { |
| 82 'action_name': 'upload_sdk_py', | 82 'action_name': 'upload_sdk_py', |
| 83 'inputs': [ | 83 'inputs': [ |
| 84 '<(PRODUCT_DIR)/dart-sdk/create.stamp', | 84 '<(PRODUCT_DIR)/dart-sdk/README', |
| 85 'tools/upload_sdk.py', | 85 'tools/upload_sdk.py', |
| 86 ], | 86 ], |
| 87 'outputs': [ | 87 'outputs': [ |
| 88 '<(PRODUCT_DIR)/dart-sdk/upload.stamp', | 88 '<(PRODUCT_DIR)/dart-sdk/upload.stamp', |
| 89 ], | 89 ], |
| 90 'action': [ | 90 'action': [ |
| 91 'python', | 91 'python', |
| 92 'tools/upload_sdk.py', | 92 'tools/upload_sdk.py', |
| 93 '<(PRODUCT_DIR)/dart-sdk' | 93 '<(PRODUCT_DIR)/dart-sdk' |
| 94 ], | 94 ], |
| (...skipping 16 matching lines...) Expand all Loading... |
| 111 }, | 111 }, |
| 112 { | 112 { |
| 113 'target_name': 'samples', | 113 'target_name': 'samples', |
| 114 'type': 'none', | 114 'type': 'none', |
| 115 'dependencies': [ | 115 'dependencies': [ |
| 116 'samples/sample_extension/sample_extension.gyp:sample_extension', | 116 'samples/sample_extension/sample_extension.gyp:sample_extension', |
| 117 ], | 117 ], |
| 118 }, | 118 }, |
| 119 ], | 119 ], |
| 120 } | 120 } |
| OLD | NEW |