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 import("../../build/executable_suffix.gni") | 5 import("../../build/executable_suffix.gni") |
6 import("../../build/prebuilt_dart_sdk.gni") | 6 import("../../build/prebuilt_dart_sdk.gni") |
7 import("gypi_contents.gni") | 7 import("gypi_contents.gni") |
8 | 8 |
9 config("libdart_vm_config") { | 9 config("libdart_vm_config") { |
10 if (defined(is_fuchsia) && is_fuchsia) { | 10 if (defined(is_fuchsia) && is_fuchsia) { |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 "*_test.h", | 83 "*_test.h", |
84 ]) | 84 ]) |
85 sources = vm_sources_list | 85 sources = vm_sources_list |
86 include_dirs = [ ".." ] | 86 include_dirs = [ ".." ] |
87 } | 87 } |
88 | 88 |
89 static_library("libdart_vm_nosnapshot") { | 89 static_library("libdart_vm_nosnapshot") { |
90 configs += [ | 90 configs += [ |
91 "..:dart_config", | 91 "..:dart_config", |
92 "..:dart_maybe_product_config", | 92 "..:dart_maybe_product_config", |
93 "..:dart_maybe_precompiled_runtime_config", | |
94 "..:dart_no_snapshot_config", | 93 "..:dart_no_snapshot_config", |
95 ] | 94 ] |
96 public_configs = [ ":libdart_vm_config" ] | 95 public_configs = [ ":libdart_vm_config" ] |
97 set_sources_assignment_filter([ | 96 set_sources_assignment_filter([ |
98 "*_test.cc", | 97 "*_test.cc", |
99 "*_test.h", | 98 "*_test.h", |
100 ]) | 99 ]) |
101 sources = vm_sources_list | 100 sources = vm_sources_list |
102 include_dirs = [ ".." ] | 101 include_dirs = [ ".." ] |
103 } | 102 } |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 "../lib", | 522 "../lib", |
524 ], | 523 ], |
525 [ | 524 [ |
526 "io", | 525 "io", |
527 processed_gypis.bin_io_sources, | 526 processed_gypis.bin_io_sources, |
528 "../bin", | 527 "../bin", |
529 ], | 528 ], |
530 ] | 529 ] |
531 } | 530 } |
532 } | 531 } |
OLD | NEW |