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

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

Issue 2540853002: Properly label vm_tests as tests (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import("gypi_contents.gni") 5 import("gypi_contents.gni")
6 6
7 declare_args() { 7 declare_args() {
8 # Whether to fall back to built-in root certificates when they cannot be 8 # Whether to fall back to built-in root certificates when they cannot be
9 # verified at the operating system level. 9 # verified at the operating system level.
10 dart_use_fallback_root_certificates = true 10 dart_use_fallback_root_certificates = true
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 "INTENTIONALLY_LEFT_BLANK_TOO", 756 "INTENTIONALLY_LEFT_BLANK_TOO",
757 rebase_path(snapshot_test_dart_file), 757 rebase_path(snapshot_test_dart_file),
758 ] 758 ]
759 } 759 }
760 760
761 executable("run_vm_tests") { 761 executable("run_vm_tests") {
762 configs += [ 762 configs += [
763 "..:dart_config", 763 "..:dart_config",
764 "..:dart_maybe_product_config", 764 "..:dart_maybe_product_config",
765 ] 765 ]
766
767 testonly = true
zra 2016/11/30 18:30:48 It looks like this can be set conditionally, e.g:
768
766 deps = [ 769 deps = [
767 ":dart_snapshot_cc", 770 ":dart_snapshot_cc",
768 ":generate_snapshot_test_dat_file", 771 ":generate_snapshot_test_dat_file",
769 ":libdart_builtin", 772 ":libdart_builtin",
770 ":standalone_dart_io", 773 ":standalone_dart_io",
771 "$dart_zlib_path", 774 "$dart_zlib_path",
772 "..:libdart", 775 "..:libdart",
773 ] 776 ]
774 include_dirs = [ 777 include_dirs = [
775 "..", 778 "..",
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 # The only effect of DART_SHARED_LIB is to export the Dart API. 842 # The only effect of DART_SHARED_LIB is to export the Dart API.
840 "DART_SHARED_LIB", 843 "DART_SHARED_LIB",
841 ] 844 ]
842 if (is_win) { 845 if (is_win) {
843 libs = [ "dart.lib" ] 846 libs = [ "dart.lib" ]
844 abs_root_out_dir = rebase_path(root_out_dir) 847 abs_root_out_dir = rebase_path(root_out_dir)
845 ldflags = [ "/LIBPATH:$abs_root_out_dir" ] 848 ldflags = [ "/LIBPATH:$abs_root_out_dir" ]
846 } 849 }
847 } 850 }
848 } 851 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698