OLD | NEW |
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, 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 declare_args() { | 6 declare_args() { |
7 dart_io_support = false | 7 dart_io_support = false |
8 } | 8 } |
9 | 9 |
10 | 10 |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 "..", | 165 "..", |
166 ] | 166 ] |
167 | 167 |
168 defines = [ | 168 defines = [ |
169 "DART_SHARED_LIB", | 169 "DART_SHARED_LIB", |
170 ] | 170 ] |
171 } | 171 } |
172 | 172 |
173 | 173 |
174 executable("gen_snapshot") { | 174 executable("gen_snapshot") { |
175 configs += ["..:dart_config"] | 175 configs += ["..:dart_config", "..:dart_gen_snapshot_config"] |
176 deps = [ | 176 deps = [ |
177 ":gen_resources_cc", | 177 ":gen_resources_cc", |
178 ":gen_snapshot_dart_io", | 178 ":gen_snapshot_dart_io", |
179 ":generate_builtin_cc_file", | 179 ":generate_builtin_cc_file", |
180 ":generate_io_cc_file", | 180 ":generate_io_cc_file", |
181 ":generate_io_patch_cc_file", | 181 ":generate_io_patch_cc_file", |
182 ":libdart_builtin", | 182 ":libdart_builtin", |
183 ":libdart_nosnapshot", | 183 ":libdart_nosnapshot", |
184 ] | 184 ] |
185 | 185 |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 "log_macos.cc", | 301 "log_macos.cc", |
302 "log_win.cc", | 302 "log_win.cc", |
303 "log.h", | 303 "log.h", |
304 ] | 304 ] |
305 | 305 |
306 include_dirs = [ | 306 include_dirs = [ |
307 "..", | 307 "..", |
308 "//third_party" | 308 "//third_party" |
309 ] | 309 ] |
310 } | 310 } |
OLD | NEW |