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 12 matching lines...) Expand all Loading... |
23 'runtime/dart-runtime.gyp:test_extension', | 23 'runtime/dart-runtime.gyp:test_extension', |
24 ], | 24 ], |
25 }, | 25 }, |
26 { | 26 { |
27 # Build the SDK. This target is separate from upload_sdk as the | 27 # Build the SDK. This target is separate from upload_sdk as the |
28 # editor needs to build the SDK without uploading it. | 28 # editor needs to build the SDK without uploading it. |
29 'target_name': 'create_sdk', | 29 'target_name': 'create_sdk', |
30 'type': 'none', | 30 'type': 'none', |
31 'dependencies': [ | 31 'dependencies': [ |
32 'runtime/dart-runtime.gyp:dart', | 32 'runtime/dart-runtime.gyp:dart', |
33 'dart2js', | 33 'utils/compiler/compiler.gyp:dart2js', |
34 ], | 34 ], |
35 'actions': [ | 35 'actions': [ |
36 { | 36 { |
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', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 'tools/upload_sdk.py', | 92 'tools/upload_sdk.py', |
93 '<(PRODUCT_DIR)/dart-sdk' | 93 '<(PRODUCT_DIR)/dart-sdk' |
94 ], | 94 ], |
95 }, | 95 }, |
96 ], | 96 ], |
97 }, | 97 }, |
98 { | 98 { |
99 'target_name': 'dart2js', | 99 'target_name': 'dart2js', |
100 'type': 'none', | 100 'type': 'none', |
101 'dependencies': [ | 101 'dependencies': [ |
| 102 'third_party/v8/src/d8.gyp:d8', |
102 'utils/compiler/compiler.gyp:dart2js', | 103 'utils/compiler/compiler.gyp:dart2js', |
103 ], | 104 ], |
104 }, | 105 }, |
105 { | 106 { |
| 107 'target_name': 'dart2js_bot', |
| 108 'type': 'none', |
| 109 'dependencies': [ |
| 110 'third_party/v8/src/d8.gyp:d8', |
| 111 'create_sdk', |
| 112 ], |
| 113 }, |
| 114 { |
106 'target_name': 'api_docs', | 115 'target_name': 'api_docs', |
107 'type': 'none', | 116 'type': 'none', |
108 'dependencies': [ | 117 'dependencies': [ |
109 'utils/apidoc/apidoc.gyp:api_docs', | 118 'utils/apidoc/apidoc.gyp:api_docs', |
110 ], | 119 ], |
111 }, | 120 }, |
112 { | 121 { |
113 'target_name': 'samples', | 122 'target_name': 'samples', |
114 'type': 'none', | 123 'type': 'none', |
115 'dependencies': [ | 124 'dependencies': [ |
116 'samples/sample_extension/sample_extension.gyp:sample_extension', | 125 'samples/sample_extension/sample_extension.gyp:sample_extension', |
117 ], | 126 ], |
118 }, | 127 }, |
119 ], | 128 ], |
120 } | 129 } |
OLD | NEW |