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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 "..:dart_product_config", | 480 "..:dart_product_config", |
481 "..:dart_precompiled_runtime_config",] | 481 "..:dart_precompiled_runtime_config",] |
482 deps = [ | 482 deps = [ |
483 ":hello_fuchsia", | 483 ":hello_fuchsia", |
484 ":gen_resources_cc", | 484 ":gen_resources_cc", |
485 ":embedded_dart_io", | 485 ":embedded_dart_io", |
486 ":libdart_builtin", | 486 ":libdart_builtin", |
487 "../vm:libdart_platform", | 487 "../vm:libdart_platform", |
488 "..:libdart", | 488 "..:libdart", |
489 ":dart_snapshot_cc", | 489 ":dart_snapshot_cc", |
| 490 "../../pkg:pkg", # Pull this out to top-level for a real SDK build. |
490 "//third_party/zlib", | 491 "//third_party/zlib", |
491 ] | 492 ] |
492 | 493 |
493 defines = [ | 494 defines = [ |
494 "NO_OBSERVATORY", | 495 "NO_OBSERVATORY", |
495 ] | 496 ] |
496 | 497 |
497 sources = [ | 498 sources = [ |
498 "main.cc", | 499 "main.cc", |
499 "observatory_assets_empty.cc", | 500 "observatory_assets_empty.cc", |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 | 587 |
587 executable("run_vm_tests_fuchsia") { | 588 executable("run_vm_tests_fuchsia") { |
588 testonly = true | 589 testonly = true |
589 configs += ["..:dart_config"] | 590 configs += ["..:dart_config"] |
590 sources = [ | 591 sources = [ |
591 "run_vm_tests_fuchsia.cc" | 592 "run_vm_tests_fuchsia.cc" |
592 ] | 593 ] |
593 libs = [ "launchpad" ] | 594 libs = [ "launchpad" ] |
594 } | 595 } |
595 } # defined(is_fuchsia) && is_fuchsia | 596 } # defined(is_fuchsia) && is_fuchsia |
OLD | NEW |