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

Unified Diff: BUILD.gn

Issue 2486753002: GN: Don't build tests by default. (Closed)
Patch Set: Created 4 years, 1 month 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 | no next file » | 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 b1301b01650b63fef076082160aa0b6b71635f63..9d98ca181c68e6e04b6c6e28aa91bda1782363fa 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -6,12 +6,18 @@
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
+import("webrtc/build/webrtc.gni")
+
group("default") {
testonly = true
deps = [
"//webrtc",
- "//webrtc:webrtc_tests",
- "//webrtc/examples",
- "//webrtc/tools",
]
+ if (rtc_include_tests) {
+ deps += [
+ "//webrtc:webrtc_tests",
+ "//webrtc/examples",
+ "//webrtc/tools",
+ ]
+ }
}
« 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