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

Unified Diff: BUILD.gn

Issue 2571713004: Fuchsia: Allows building the full SDK for host and target. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/bin/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 7d1f7fd87645575525b854fec12285f08bcca098..67a6b43cb532d52617bcb9eb2f3c58b706e812f7 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -4,12 +4,20 @@
# This target will be built if no target is specified when invoking ninja.
group("default") {
+ if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) {
+ # Fuchsia has run_vm_tests marked testonly.
+ testonly = true
+ }
deps = [
":runtime",
]
}
group("most") {
+ if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) {
+ # Fuchsia has run_vm_tests marked testonly.
+ testonly = true
+ }
deps = [
":analysis_server",
":create_sdk",
@@ -22,6 +30,10 @@ group("most") {
}
group("runtime") {
+ if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) {
+ # Fuchsia has run_vm_tests marked testonly.
+ testonly = true
+ }
deps = [
"runtime/bin:dart",
"runtime/bin:dart_bootstrap($host_toolchain)",
@@ -42,6 +54,9 @@ group("runtime_precompiled") {
}
group("runtime_and_noopt") {
+ if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) {
+ testonly = true
+ }
deps = [
"runtime/bin:dart",
"runtime/bin:dart_bootstrap($host_toolchain)",
« no previous file with comments | « no previous file | runtime/bin/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698