| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 java_files = [ | 109 java_files = [ |
| 110 "androidtests/src/org/appspot/apprtc/test/FileVideoCapturerTest.java", | 110 "androidtests/src/org/appspot/apprtc/test/FileVideoCapturerTest.java", |
| 111 "androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java", | 111 "androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java", |
| 112 "androidtests/src/org/appspot/apprtc/test/VideoFileRendererTest.java", | 112 "androidtests/src/org/appspot/apprtc/test/VideoFileRendererTest.java", |
| 113 ] | 113 ] |
| 114 | 114 |
| 115 apk_under_test = ":AppRTCMobile" | 115 apk_under_test = ":AppRTCMobile" |
| 116 | 116 |
| 117 deps = [ | 117 deps = [ |
| 118 ":AppRTCMobile_javalib", | 118 ":AppRTCMobile_javalib", |
| 119 "//base:base_java_test_support", |
| 120 "//third_party/android_support_test_runner:runner_java", |
| 121 "//third_party/junit", |
| 119 "//webrtc/sdk/android:libjingle_peerconnection_java", | 122 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 120 ] | 123 ] |
| 121 | 124 |
| 122 data = [ | 125 data = [ |
| 123 "//webrtc/examples/androidtests/src/org/appspot/apprtc/test/capturetestvid
eo.y4m", | 126 "//webrtc/examples/androidtests/src/org/appspot/apprtc/test/capturetestvid
eo.y4m", |
| 124 ] | 127 ] |
| 125 } | 128 } |
| 126 } | 129 } |
| 127 | 130 |
| 128 if (is_ios || (is_mac && target_cpu != "x86")) { | 131 if (is_ios || (is_mac && target_cpu != "x86")) { |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 592 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 590 } | 593 } |
| 591 | 594 |
| 592 deps = [ | 595 deps = [ |
| 593 "../p2p:libstunprober", | 596 "../p2p:libstunprober", |
| 594 "../p2p:rtc_p2p", | 597 "../p2p:rtc_p2p", |
| 595 "../system_wrappers:field_trial_default", | 598 "../system_wrappers:field_trial_default", |
| 596 ] | 599 ] |
| 597 } | 600 } |
| 598 } | 601 } |
| OLD | NEW |