Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: runtime/bin/BUILD.gn

Issue 2379803002: Linux create_sdk GN build for host (Closed)
Patch Set: Remove debug print Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 548
549 if (!defined(is_fuchsia) || !is_fuchsia) { 549 if (!defined(is_fuchsia) || !is_fuchsia) {
550 dart_executable("dart") { 550 dart_executable("dart") {
551 extra_deps = [ 551 extra_deps = [
552 "..:libdart", 552 "..:libdart",
553 ":dart_snapshot_cc", 553 ":dart_snapshot_cc",
554 "../observatory:standalone_observatory_archive", 554 "../observatory:standalone_observatory_archive",
555 ] 555 ]
556 } 556 }
557 557
558 dart_executable("dart_noopt") {
559 extra_configs = [
560 "..:dart_precompiler_config",
561 ]
562 extra_deps = [
563 "..:libdart_noopt",
564 ":dart_snapshot_cc",
565 "../observatory:standalone_observatory_archive",
566 ]
567 }
568
558 dart_executable("dart_precompiled_runtime") { 569 dart_executable("dart_precompiled_runtime") {
559 extra_configs = [ 570 extra_configs = [
560 "..:dart_precompiled_runtime_config" 571 "..:dart_precompiled_runtime_config"
561 ] 572 ]
562 extra_deps = [ 573 extra_deps = [
563 "..:libdart_precompiled_runtime", 574 "..:libdart_precompiled_runtime",
564 ":dart_snapshot_cc", 575 ":dart_snapshot_cc",
565 "../observatory:standalone_observatory_archive", 576 "../observatory:standalone_observatory_archive",
566 ] 577 ]
567 } 578 }
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 ] 747 ]
737 include_dirs = [ 748 include_dirs = [
738 "..", 749 "..",
739 ] 750 ]
740 defines = [ 751 defines = [
741 # The only effect of DART_SHARED_LIB is to export the Dart API. 752 # The only effect of DART_SHARED_LIB is to export the Dart API.
742 "DART_SHARED_LIB", 753 "DART_SHARED_LIB",
743 ] 754 ]
744 } 755 }
745 } 756 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698