| 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 # TODO(zra, jamesr): Remove this check once we start building boringssl for | 9 # TODO(zra, jamesr): Remove this check once we start building boringssl for |
| 10 # the fuchsia port. | 10 # the fuchsia port. |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 "--keep_only=_test.cc", | 553 "--keep_only=_test.cc", |
| 554 "--keep_only=_test.h",], | 554 "--keep_only=_test.h",], |
| 555 "scope", | 555 "scope", |
| 556 ["builtin_impl_sources.gypi"]) | 556 ["builtin_impl_sources.gypi"]) |
| 557 | 557 |
| 558 sources = [ | 558 sources = [ |
| 559 "run_vm_tests.cc", | 559 "run_vm_tests.cc", |
| 560 ] + builtin_impl_tests_list.sources + vm_tests | 560 ] + builtin_impl_tests_list.sources + vm_tests |
| 561 } | 561 } |
| 562 | 562 |
| 563 copy("fuchsia_vm_tests") { | |
| 564 sources = [ "fuchsia_vm_tests.txt" ] | |
| 565 outputs = [ "$root_out_dir/fuchsia_vm_tests.txt" ] | |
| 566 } | |
| 567 | |
| 568 executable("run_vm_tests_fuchsia") { | 563 executable("run_vm_tests_fuchsia") { |
| 569 testonly = true | 564 testonly = true |
| 570 configs += ["..:dart_config"] | 565 configs += ["..:dart_config"] |
| 571 sources = [ | 566 sources = [ |
| 572 "run_vm_tests_fuchsia.cc" | 567 "run_vm_tests_fuchsia.cc" |
| 573 ] | 568 ] |
| 574 libs = [ | 569 libs = [ |
| 575 "launchpad", | 570 "launchpad", |
| 576 "runtime", | 571 "runtime", |
| 577 ] | 572 ] |
| 578 } | 573 } |
| 579 } # defined(is_fuchsia) && is_fuchsia | 574 } # defined(is_fuchsia) && is_fuchsia |
| OLD | NEW |