GN: Don't build tests by default.

BUG=webrtc:6412
R=kjellander@webrtc.org, charujain@webrtc.org
NOTRY=True

Review-Url: https://codereview.webrtc.org/2486753002
Cr-Commit-Position: refs/heads/master@{#14979}
This commit is contained in:
ehmaldonado 2016-11-08 06:34:20 -08:00 committed by Commit bot
parent 09bc128603
commit 37d7a22af9

View File

@ -6,12 +6,18 @@
# in the file PATENTS. All contributing project authors may # in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree. # be found in the AUTHORS file in the root of the source tree.
import("webrtc/build/webrtc.gni")
group("default") { group("default") {
testonly = true testonly = true
deps = [ deps = [
"//webrtc", "//webrtc",
]
if (rtc_include_tests) {
deps += [
"//webrtc:webrtc_tests", "//webrtc:webrtc_tests",
"//webrtc/examples", "//webrtc/examples",
"//webrtc/tools", "//webrtc/tools",
] ]
}
} }