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

Side by Side Diff: BUILD.gn

Issue 2619723004: GN build: Add process_test to precompiled runtime target. (Closed)
Patch Set: Created 3 years, 11 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
« 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) 2016, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2016, 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 # This target will be built if no target is specified when invoking ninja. 5 # This target will be built if no target is specified when invoking ninja.
6 group("default") { 6 group("default") {
7 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) { 7 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) {
8 # Fuchsia has run_vm_tests marked testonly. 8 # Fuchsia has run_vm_tests marked testonly.
9 testonly = true 9 testonly = true
10 } 10 }
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "runtime/bin:sample_extension", 42 "runtime/bin:sample_extension",
43 "runtime/bin:test_extension", 43 "runtime/bin:test_extension",
44 "runtime/vm:patched_sdk", 44 "runtime/vm:patched_sdk",
45 ] 45 ]
46 } 46 }
47 47
48 group("runtime_precompiled") { 48 group("runtime_precompiled") {
49 deps = [ 49 deps = [
50 "runtime/bin:dart_bootstrap($host_toolchain)", 50 "runtime/bin:dart_bootstrap($host_toolchain)",
51 "runtime/bin:dart_precompiled_runtime", 51 "runtime/bin:dart_precompiled_runtime",
52 "runtime/bin:process_test",
52 "runtime/vm:patched_sdk", 53 "runtime/vm:patched_sdk",
53 ] 54 ]
54 } 55 }
55 56
56 group("runtime_and_noopt") { 57 group("runtime_and_noopt") {
57 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) { 58 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) {
58 testonly = true 59 testonly = true
59 } 60 }
60 deps = [ 61 deps = [
61 "runtime/bin:dart", 62 "runtime/bin:dart",
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 deps = [ 174 deps = [
174 ":create_sdk", 175 ":create_sdk",
175 ] 176 ]
176 } 177 }
177 178
178 group("samples") { 179 group("samples") {
179 deps = [ 180 deps = [
180 "runtime/bin:sample_extension", 181 "runtime/bin:sample_extension",
181 ] 182 ]
182 } 183 }
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