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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
553 | 553 |
554 if (!defined(is_fuchsia) || !is_fuchsia) { | 554 if (!defined(is_fuchsia) || !is_fuchsia) { |
555 dart_executable("dart") { | 555 dart_executable("dart") { |
556 extra_deps = [ | 556 extra_deps = [ |
557 "..:libdart", | 557 "..:libdart", |
558 ":dart_snapshot_cc", | 558 ":dart_snapshot_cc", |
559 "../observatory:standalone_observatory_archive", | 559 "../observatory:standalone_observatory_archive", |
560 ] | 560 ] |
561 } | 561 } |
562 | 562 |
| 563 dart_executable("dart_noopt") { |
| 564 extra_configs = [ |
| 565 "..:dart_precompiler_config", |
| 566 ] |
| 567 extra_deps = [ |
| 568 "..:libdart_noopt", |
| 569 ":dart_snapshot_cc", |
| 570 "../observatory:standalone_observatory_archive", |
| 571 ] |
| 572 } |
| 573 |
563 dart_executable("dart_precompiled_runtime") { | 574 dart_executable("dart_precompiled_runtime") { |
564 extra_configs = [ | 575 extra_configs = [ |
565 "..:dart_precompiled_runtime_config" | 576 "..:dart_precompiled_runtime_config" |
566 ] | 577 ] |
567 extra_deps = [ | 578 extra_deps = [ |
568 "..:libdart_precompiled_runtime", | 579 "..:libdart_precompiled_runtime", |
569 ":dart_snapshot_cc", | 580 ":dart_snapshot_cc", |
570 "../observatory:standalone_observatory_archive", | 581 "../observatory:standalone_observatory_archive", |
571 ] | 582 ] |
572 } | 583 } |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
741 ] | 752 ] |
742 include_dirs = [ | 753 include_dirs = [ |
743 "..", | 754 "..", |
744 ] | 755 ] |
745 defines = [ | 756 defines = [ |
746 # The only effect of DART_SHARED_LIB is to export the Dart API. | 757 # The only effect of DART_SHARED_LIB is to export the Dart API. |
747 "DART_SHARED_LIB", | 758 "DART_SHARED_LIB", |
748 ] | 759 ] |
749 } | 760 } |
750 } | 761 } |
OLD | NEW |