| 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 import("../runtime_args.gni") | 8 import("../runtime_args.gni") |
| 9 | 9 |
| 10 config("libdart_vm_config") { | 10 config("libdart_vm_config") { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 ] | 49 ] |
| 50 public_configs = [ ":libdart_vm_config" ] | 50 public_configs = [ ":libdart_vm_config" ] |
| 51 set_sources_assignment_filter([ | 51 set_sources_assignment_filter([ |
| 52 "*_test.cc", | 52 "*_test.cc", |
| 53 "*_test.h", | 53 "*_test.h", |
| 54 ]) | 54 ]) |
| 55 sources = vm_sources_list | 55 sources = vm_sources_list |
| 56 include_dirs = [ ".." ] | 56 include_dirs = [ ".." ] |
| 57 } | 57 } |
| 58 | 58 |
| 59 static_library("libdart_vm_noopt") { | |
| 60 configs += [ | |
| 61 "..:dart_config", | |
| 62 "..:dart_maybe_product_config", | |
| 63 "..:dart_precompiler_config", | |
| 64 "..:dart_maybe_precompiled_runtime_config", | |
| 65 ] | |
| 66 public_configs = [ ":libdart_vm_config" ] | |
| 67 set_sources_assignment_filter([ | |
| 68 "*_test.cc", | |
| 69 "*_test.h", | |
| 70 ]) | |
| 71 sources = vm_sources_list | |
| 72 include_dirs = [ ".." ] | |
| 73 } | |
| 74 | |
| 75 static_library("libdart_vm_precompiled_runtime") { | 59 static_library("libdart_vm_precompiled_runtime") { |
| 76 configs += [ | 60 configs += [ |
| 77 "..:dart_config", | 61 "..:dart_config", |
| 78 "..:dart_maybe_product_config", | 62 "..:dart_maybe_product_config", |
| 79 "..:dart_precompiled_runtime_config", | 63 "..:dart_precompiled_runtime_config", |
| 80 ] | 64 ] |
| 81 public_configs = [ ":libdart_vm_config" ] | 65 public_configs = [ ":libdart_vm_config" ] |
| 82 set_sources_assignment_filter([ | 66 set_sources_assignment_filter([ |
| 83 "*_test.cc", | 67 "*_test.cc", |
| 84 "*_test.h", | 68 "*_test.h", |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 processed_gypis.vmservice_runtime_sources, | 514 processed_gypis.vmservice_runtime_sources, |
| 531 "../lib", | 515 "../lib", |
| 532 ], | 516 ], |
| 533 [ | 517 [ |
| 534 "io", | 518 "io", |
| 535 processed_gypis.bin_io_sources, | 519 processed_gypis.bin_io_sources, |
| 536 "../bin", | 520 "../bin", |
| 537 ], | 521 ], |
| 538 ] | 522 ] |
| 539 } | 523 } |
| OLD | NEW |