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

Unified Diff: webrtc/examples/BUILD.gn

Issue 2441383002: GN: New conventions, default target and refactorings (Closed)
Patch Set: Restored root BUILD.gn for submit. Created 4 years, 2 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 | « webrtc/base/BUILD.gn ('k') | webrtc/logging/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/examples/BUILD.gn
diff --git a/webrtc/examples/BUILD.gn b/webrtc/examples/BUILD.gn
index a1f02314401f6e59178c2bd7fa84cb11b97ddb40..e46e4b53199324ba0ac69dfcdacc4ceeb5f6e12f 100644
--- a/webrtc/examples/BUILD.gn
+++ b/webrtc/examples/BUILD.gn
@@ -20,12 +20,22 @@ if (is_linux) {
}
group("examples") {
+ # This target shall build all targets in examples.
+ testonly = true
public_deps = []
if (is_android) {
+ public_deps += [
+ ":AppRTCMobile",
+ ":AppRTCMobileTest",
+ ]
+ }
+
+ if (is_ios || (is_mac && target_cpu != "x86")) {
public_deps += [ ":AppRTCMobile" ]
}
- if (is_linux) {
+
+ if (is_linux || is_win) {
public_deps += [
":peerconnection_client",
":peerconnection_server",
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/logging/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698