OLD | NEW |
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 'variables': { | 6 'variables': { |
7 'corelib_in_cc_file': 'corelib_in.cc', | 7 'corelib_in_cc_file': 'corelib_in.cc', |
8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', | 8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', |
9 'corelib_impl_in_cc_file': 'corelib_impl_in.cc', | 9 'corelib_impl_in_cc_file': 'corelib_impl_in.cc', |
10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', | 10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 'type': 'static_library', | 60 'type': 'static_library', |
61 'dependencies': [ | 61 'dependencies': [ |
62 'generate_corelib_cc_file', | 62 'generate_corelib_cc_file', |
63 'generate_corelib_impl_cc_file', | 63 'generate_corelib_impl_cc_file', |
64 ], | 64 ], |
65 'includes': [ | 65 'includes': [ |
66 '../lib/lib_sources.gypi', | 66 '../lib/lib_sources.gypi', |
67 '../lib/lib_impl_sources.gypi', | 67 '../lib/lib_impl_sources.gypi', |
68 ], | 68 ], |
69 'sources': [ | 69 'sources': [ |
| 70 'bootstrap.cc', |
70 # Include generated source files. | 71 # Include generated source files. |
71 '<(corelib_cc_file)', | 72 '<(corelib_cc_file)', |
72 '<(corelib_impl_cc_file)', | 73 '<(corelib_impl_cc_file)', |
73 ], | 74 ], |
74 'include_dirs': [ | 75 'include_dirs': [ |
75 '..', | 76 '..', |
76 ], | 77 ], |
77 }, | 78 }, |
78 { | 79 { |
| 80 'target_name': 'libdart_nocorelib_lib', |
| 81 'type': 'static_library', |
| 82 'includes': [ |
| 83 '../lib/lib_sources.gypi', |
| 84 '../lib/lib_impl_sources.gypi', |
| 85 ], |
| 86 'sources': [ |
| 87 'bootstrap_nocorelib.cc', |
| 88 ], |
| 89 'include_dirs': [ |
| 90 '..', |
| 91 ], |
| 92 }, |
| 93 { |
79 'target_name': 'libdart_api', | 94 'target_name': 'libdart_api', |
80 'type': 'static_library', | 95 'type': 'static_library', |
81 'include_dirs': [ | 96 'include_dirs': [ |
82 '..', | 97 '..', |
83 ], | 98 ], |
84 'sources': [ | 99 'sources': [ |
85 '../vm/dart_api_impl.cc', | 100 '../vm/dart_api_impl.cc', |
86 ], | 101 ], |
87 }, | 102 }, |
88 { | 103 { |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 '--output', '<(snapshot_test_dat_file)', | 211 '--output', '<(snapshot_test_dat_file)', |
197 '--input_cc', '<(snapshot_test_in_dat_file)', | 212 '--input_cc', '<(snapshot_test_in_dat_file)', |
198 '<(snapshot_test_dart_file)', | 213 '<(snapshot_test_dart_file)', |
199 ], | 214 ], |
200 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 215 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
201 }, | 216 }, |
202 ] | 217 ] |
203 }, | 218 }, |
204 ] | 219 ] |
205 } | 220 } |
OLD | NEW |