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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 "..:dart_product_config", | 460 "..:dart_product_config", |
461 "..:dart_precompiled_runtime_config",] | 461 "..:dart_precompiled_runtime_config",] |
462 deps = [ | 462 deps = [ |
463 ":hello_fuchsia", | 463 ":hello_fuchsia", |
464 ":gen_resources_cc", | 464 ":gen_resources_cc", |
465 ":embedded_dart_io", | 465 ":embedded_dart_io", |
466 ":libdart_builtin", | 466 ":libdart_builtin", |
467 "../vm:libdart_platform", | 467 "../vm:libdart_platform", |
468 "..:libdart", | 468 "..:libdart", |
469 ":dart_snapshot_cc", | 469 ":dart_snapshot_cc", |
470 "../../pkg:pkg", # Pull this out to top-level for a real SDK build. | |
471 "//third_party/zlib", | 470 "//third_party/zlib", |
472 ] | 471 ] |
473 | 472 |
474 defines = [ | 473 defines = [ |
475 "NO_OBSERVATORY", | 474 "NO_OBSERVATORY", |
476 ] | 475 ] |
477 | 476 |
478 sources = [ | 477 sources = [ |
479 "main.cc", | 478 "main.cc", |
480 "observatory_assets_empty.cc", | 479 "observatory_assets_empty.cc", |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
566 sources = [ | 565 sources = [ |
567 "run_vm_tests_fuchsia.cc" | 566 "run_vm_tests_fuchsia.cc" |
568 ] | 567 ] |
569 libs = [ | 568 libs = [ |
570 "launchpad", | 569 "launchpad", |
571 "magenta", | 570 "magenta", |
572 "runtime", | 571 "runtime", |
573 ] | 572 ] |
574 } | 573 } |
575 } # defined(is_fuchsia) && is_fuchsia | 574 } # defined(is_fuchsia) && is_fuchsia |
OLD | NEW |