| 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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 sources = [ "fuchsia_vm_tests.txt" ] | 563 sources = [ "fuchsia_vm_tests.txt" ] |
| 564 outputs = [ "$root_out_dir/fuchsia_vm_tests.txt" ] | 564 outputs = [ "$root_out_dir/fuchsia_vm_tests.txt" ] |
| 565 } | 565 } |
| 566 | 566 |
| 567 executable("run_vm_tests_fuchsia") { | 567 executable("run_vm_tests_fuchsia") { |
| 568 testonly = true | 568 testonly = true |
| 569 configs += ["..:dart_config"] | 569 configs += ["..:dart_config"] |
| 570 sources = [ | 570 sources = [ |
| 571 "run_vm_tests_fuchsia.cc" | 571 "run_vm_tests_fuchsia.cc" |
| 572 ] | 572 ] |
| 573 libs = [ "launchpad" ] | 573 libs = [ |
| 574 "launchpad", |
| 575 "runtime", |
| 576 ] |
| 574 } | 577 } |
| 575 } # defined(is_fuchsia) && is_fuchsia | 578 } # defined(is_fuchsia) && is_fuchsia |
| OLD | NEW |