| 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 declare_args() { | 5 declare_args() { |
| 6 # Whether to fall back to built-in root certificates when they cannot be | 6 # Whether to fall back to built-in root certificates when they cannot be |
| 7 # verified at the operating system level. | 7 # verified at the operating system level. |
| 8 dart_use_fallback_root_certificates = false | 8 dart_use_fallback_root_certificates = false |
| 9 | 9 |
| 10 # The BUILD.gn file that we pull from chromium as part of zlib has a | 10 # The BUILD.gn file that we pull from chromium as part of zlib has a |
| (...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 | 636 |
| 637 executable("run_vm_tests_fuchsia") { | 637 executable("run_vm_tests_fuchsia") { |
| 638 testonly = true | 638 testonly = true |
| 639 configs += ["..:dart_config"] | 639 configs += ["..:dart_config"] |
| 640 sources = [ | 640 sources = [ |
| 641 "run_vm_tests_fuchsia.cc" | 641 "run_vm_tests_fuchsia.cc" |
| 642 ] | 642 ] |
| 643 libs = [ | 643 libs = [ |
| 644 "launchpad", | 644 "launchpad", |
| 645 "magenta", | 645 "magenta", |
| 646 "runtime", | |
| 647 ] | 646 ] |
| 648 } | 647 } |
| 649 } | 648 } |
| 650 | 649 |
| 651 # This is only needed for the Fuchsia target build until the Observatory is | 650 # This is only needed for the Fuchsia target build until the Observatory is |
| 652 # supported. | 651 # supported. |
| 653 dart_executable("dart_no_observatory") { | 652 dart_executable("dart_no_observatory") { |
| 654 extra_deps = [ | 653 extra_deps = [ |
| 655 "..:libdart", | 654 "..:libdart", |
| 656 ":dart_snapshot_cc", | 655 ":dart_snapshot_cc", |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 libs = [ | 809 libs = [ |
| 811 "dart.lib" | 810 "dart.lib" |
| 812 ] | 811 ] |
| 813 abs_root_out_dir = rebase_path(root_out_dir) | 812 abs_root_out_dir = rebase_path(root_out_dir) |
| 814 ldflags = [ | 813 ldflags = [ |
| 815 "/LIBPATH:$abs_root_out_dir" | 814 "/LIBPATH:$abs_root_out_dir" |
| 816 ] | 815 ] |
| 817 } | 816 } |
| 818 } | 817 } |
| 819 } | 818 } |
| OLD | NEW |