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

Side by Side Diff: webrtc/sdk/android/BUILD.gn

Issue 2807933003: Add Java binding for new getStats implementation. (Closed)
Patch Set: Responding to sakal@'s comments Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/sdk/android/api/org/webrtc/PeerConnection.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//webrtc/webrtc.gni") 9 import("//webrtc/webrtc.gni")
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 24 matching lines...) Expand all
35 "src/jni/androidvideotracksource.cc", 35 "src/jni/androidvideotracksource.cc",
36 "src/jni/androidvideotracksource.h", 36 "src/jni/androidvideotracksource.h",
37 "src/jni/androidvideotracksource_jni.cc", 37 "src/jni/androidvideotracksource_jni.cc",
38 "src/jni/classreferenceholder.cc", 38 "src/jni/classreferenceholder.cc",
39 "src/jni/classreferenceholder.h", 39 "src/jni/classreferenceholder.h",
40 "src/jni/jni_helpers.cc", 40 "src/jni/jni_helpers.cc",
41 "src/jni/jni_helpers.h", 41 "src/jni/jni_helpers.h",
42 "src/jni/native_handle_impl.cc", 42 "src/jni/native_handle_impl.cc",
43 "src/jni/native_handle_impl.h", 43 "src/jni/native_handle_impl.h",
44 "src/jni/peerconnection_jni.cc", 44 "src/jni/peerconnection_jni.cc",
45 "src/jni/rtcstatscollectorcallbackwrapper.cc",
46 "src/jni/rtcstatscollectorcallbackwrapper.h",
45 "src/jni/surfacetexturehelper_jni.cc", 47 "src/jni/surfacetexturehelper_jni.cc",
46 "src/jni/surfacetexturehelper_jni.h", 48 "src/jni/surfacetexturehelper_jni.h",
47 ] 49 ]
48 50
49 configs += [ ":libjingle_peerconnection_jni_warnings_config" ] 51 configs += [ ":libjingle_peerconnection_jni_warnings_config" ]
50 52
51 if (is_clang) { 53 if (is_clang) {
52 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 54 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
53 suppressed_configs += [ 55 suppressed_configs += [
54 "//build/config/clang:extra_warnings", 56 "//build/config/clang:extra_warnings",
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 "api/org/webrtc/MediaCodecVideoEncoder.java", 155 "api/org/webrtc/MediaCodecVideoEncoder.java",
154 "api/org/webrtc/MediaConstraints.java", 156 "api/org/webrtc/MediaConstraints.java",
155 "api/org/webrtc/MediaSource.java", 157 "api/org/webrtc/MediaSource.java",
156 "api/org/webrtc/MediaStream.java", 158 "api/org/webrtc/MediaStream.java",
157 "api/org/webrtc/MediaStreamTrack.java", 159 "api/org/webrtc/MediaStreamTrack.java",
158 "api/org/webrtc/NetworkMonitor.java", 160 "api/org/webrtc/NetworkMonitor.java",
159 "api/org/webrtc/NetworkMonitorAutoDetect.java", 161 "api/org/webrtc/NetworkMonitorAutoDetect.java",
160 "api/org/webrtc/PeerConnection.java", 162 "api/org/webrtc/PeerConnection.java",
161 "api/org/webrtc/PeerConnectionFactory.java", 163 "api/org/webrtc/PeerConnectionFactory.java",
162 "api/org/webrtc/RendererCommon.java", 164 "api/org/webrtc/RendererCommon.java",
165 "api/org/webrtc/RTCStats.java",
166 "api/org/webrtc/RTCStatsCollectorCallback.java",
167 "api/org/webrtc/RTCStatsReport.java",
163 "api/org/webrtc/RtpParameters.java", 168 "api/org/webrtc/RtpParameters.java",
164 "api/org/webrtc/RtpReceiver.java", 169 "api/org/webrtc/RtpReceiver.java",
165 "api/org/webrtc/RtpSender.java", 170 "api/org/webrtc/RtpSender.java",
166 "api/org/webrtc/ScreenCapturerAndroid.java", 171 "api/org/webrtc/ScreenCapturerAndroid.java",
167 "api/org/webrtc/SdpObserver.java", 172 "api/org/webrtc/SdpObserver.java",
168 "api/org/webrtc/SessionDescription.java", 173 "api/org/webrtc/SessionDescription.java",
169 "api/org/webrtc/StatsObserver.java", 174 "api/org/webrtc/StatsObserver.java",
170 "api/org/webrtc/StatsReport.java", 175 "api/org/webrtc/StatsReport.java",
171 "api/org/webrtc/SurfaceTextureHelper.java", 176 "api/org/webrtc/SurfaceTextureHelper.java",
172 "api/org/webrtc/SurfaceViewRenderer.java", 177 "api/org/webrtc/SurfaceViewRenderer.java",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 "//third_party/android_support_test_runner:runner_java", 236 "//third_party/android_support_test_runner:runner_java",
232 "//third_party/junit", 237 "//third_party/junit",
233 "//webrtc/base:base_java", 238 "//webrtc/base:base_java",
234 "//webrtc/sdk/android:libjingle_peerconnection_java", 239 "//webrtc/sdk/android:libjingle_peerconnection_java",
235 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", 240 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java",
236 ] 241 ]
237 242
238 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] 243 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ]
239 } 244 }
240 } 245 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/sdk/android/api/org/webrtc/PeerConnection.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698