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

Unified Diff: BUILD.gn

Issue 1312763004: Rationalize the top-level BUILD.gn rules a bit (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | mojo/BUILD.gn » ('j') | services/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index bb7dfc453d04c33e61c39311ddc2008178a2409a..a3e4bf8f701507d00034da1c49bf69689d1cf606 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -2,12 +2,15 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//build/config/ui.gni")
+
# This target will be built if no target is specified when invoking ninja.
group("default") {
testonly = true
deps = [
"//apps",
+ "//benchmarks",
"//crypto:crypto_unittests",
"//examples",
"//mojo",
@@ -18,7 +21,7 @@ group("default") {
"//ui/events:events_unittests",
]
- if (!is_android && !is_win) {
+ if (!is_android) {
deps += [ "//tools/xdisplaycheck" ]
}
@@ -26,6 +29,13 @@ group("default") {
deps += [ "//sandbox/linux:sandbox" ]
deps += [ "//sandbox/linux:sandbox_linux_unittests" ]
}
+
+ if (use_ozone) {
+ deps += [
+ "//ui/ozone",
+ "//ui/ozone/demo",
+ ]
+ }
}
# Deprecated name for the default build target.
« no previous file with comments | « no previous file | mojo/BUILD.gn » ('j') | services/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698