OLD | NEW |
---|---|
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
86 | 86 |
87 android_resources("AppRTCMobile_resources") { | 87 android_resources("AppRTCMobile_resources") { |
88 resource_dirs = [ "androidapp/res" ] | 88 resource_dirs = [ "androidapp/res" ] |
89 custom_package = "org.appspot.apprtc" | 89 custom_package = "org.appspot.apprtc" |
90 } | 90 } |
91 | 91 |
92 instrumentation_test_apk("AppRTCMobileTest") { | 92 instrumentation_test_apk("AppRTCMobileTest") { |
93 apk_name = "AppRTCMobileTest" | 93 apk_name = "AppRTCMobileTest" |
94 android_manifest = "androidtests/AndroidManifest.xml" | 94 android_manifest = "androidtests/AndroidManifest.xml" |
95 | 95 |
96 java_files = [ "androidtests/src/org/appspot/apprtc/test/PeerConnectionClien tTest.java" ] | 96 java_files = [ |
97 "androidtests/src/org/appspot/apprtc/test/FileVideoCapturerTest.java", | |
98 "androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java", | |
99 ] | |
97 | 100 |
kjellander_webrtc
2016/10/12 01:00:23
1) You'll need to upload your reference_video_640x
| |
98 apk_under_test = ":AppRTCMobile" | 101 apk_under_test = ":AppRTCMobile" |
99 | 102 |
100 deps = [ | 103 deps = [ |
101 ":AppRTCMobile_javalib", | 104 ":AppRTCMobile_javalib", |
102 "//webrtc/api:libjingle_peerconnection_java", | 105 "//webrtc/api:libjingle_peerconnection_java", |
103 ] | 106 ] |
104 } | 107 } |
105 } | 108 } |
106 | 109 |
107 if (is_ios || (is_mac && target_cpu != "x86")) { | 110 if (is_ios || (is_mac && target_cpu != "x86")) { |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
512 "//webrtc/system_wrappers:field_trial_default", | 515 "//webrtc/system_wrappers:field_trial_default", |
513 "//webrtc/system_wrappers:metrics_default", | 516 "//webrtc/system_wrappers:metrics_default", |
514 ] | 517 ] |
515 if (is_clang) { | 518 if (is_clang) { |
516 # Suppress warnings from the Chromium Clang plugin. | 519 # Suppress warnings from the Chromium Clang plugin. |
517 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 520 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
518 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 521 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
519 } | 522 } |
520 } | 523 } |
521 } | 524 } |
OLD | NEW |