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

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

Issue 2767643002: Enable the Java wrapper to load different .so library.
Patch Set: Add static method to the subclass to solve the linking error. Created 3 years, 7 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
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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 "api/org/webrtc/MediaCodecVideoDecoder.java", 167 "api/org/webrtc/MediaCodecVideoDecoder.java",
168 "api/org/webrtc/MediaCodecVideoEncoder.java", 168 "api/org/webrtc/MediaCodecVideoEncoder.java",
169 "api/org/webrtc/MediaConstraints.java", 169 "api/org/webrtc/MediaConstraints.java",
170 "api/org/webrtc/MediaSource.java", 170 "api/org/webrtc/MediaSource.java",
171 "api/org/webrtc/MediaStream.java", 171 "api/org/webrtc/MediaStream.java",
172 "api/org/webrtc/MediaStreamTrack.java", 172 "api/org/webrtc/MediaStreamTrack.java",
173 "api/org/webrtc/NetworkMonitor.java", 173 "api/org/webrtc/NetworkMonitor.java",
174 "api/org/webrtc/NetworkMonitorAutoDetect.java", 174 "api/org/webrtc/NetworkMonitorAutoDetect.java",
175 "api/org/webrtc/PeerConnection.java", 175 "api/org/webrtc/PeerConnection.java",
176 "api/org/webrtc/PeerConnectionFactory.java", 176 "api/org/webrtc/PeerConnectionFactory.java",
177 "api/org/webrtc/PeerConnectionFactoryBase.java",
178 "api/org/webrtc/PeerConnectionFactoryDatachannelOnly.java",
Taylor Brandstetter 2017/05/11 10:17:11 nit: I'd call the file "...DataChannelOnly.java",
Zhi Huang 2017/05/12 00:35:47 Done.
177 "api/org/webrtc/RendererCommon.java", 179 "api/org/webrtc/RendererCommon.java",
178 "api/org/webrtc/RTCStats.java", 180 "api/org/webrtc/RTCStats.java",
179 "api/org/webrtc/RTCStatsCollectorCallback.java", 181 "api/org/webrtc/RTCStatsCollectorCallback.java",
180 "api/org/webrtc/RTCStatsReport.java", 182 "api/org/webrtc/RTCStatsReport.java",
181 "api/org/webrtc/RtpParameters.java", 183 "api/org/webrtc/RtpParameters.java",
182 "api/org/webrtc/RtpReceiver.java", 184 "api/org/webrtc/RtpReceiver.java",
183 "api/org/webrtc/RtpSender.java", 185 "api/org/webrtc/RtpSender.java",
184 "api/org/webrtc/ScreenCapturerAndroid.java", 186 "api/org/webrtc/ScreenCapturerAndroid.java",
185 "api/org/webrtc/SdpObserver.java", 187 "api/org/webrtc/SdpObserver.java",
186 "api/org/webrtc/SessionDescription.java", 188 "api/org/webrtc/SessionDescription.java",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 "//third_party/android_support_test_runner:runner_java", 254 "//third_party/android_support_test_runner:runner_java",
253 "//third_party/junit", 255 "//third_party/junit",
254 "//webrtc/base:base_java", 256 "//webrtc/base:base_java",
255 "//webrtc/sdk/android:libjingle_peerconnection_java", 257 "//webrtc/sdk/android:libjingle_peerconnection_java",
256 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", 258 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java",
257 ] 259 ]
258 260
259 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] 261 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ]
260 } 262 }
261 } 263 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698