| 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",
|
|
|