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

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

Issue 2831603002: Android: Move EglBase10/EglBase14 from to API to src (Closed)
Patch Set: Rebase 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
« no previous file with comments | « no previous file | webrtc/sdk/android/api/org/webrtc/EglBase10.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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 "api/org/webrtc/Camera1Capturer.java", 150 "api/org/webrtc/Camera1Capturer.java",
151 "api/org/webrtc/Camera1Enumerator.java", 151 "api/org/webrtc/Camera1Enumerator.java",
152 "api/org/webrtc/Camera2Capturer.java", 152 "api/org/webrtc/Camera2Capturer.java",
153 "api/org/webrtc/Camera2Enumerator.java", 153 "api/org/webrtc/Camera2Enumerator.java",
154 "api/org/webrtc/CameraEnumerationAndroid.java", 154 "api/org/webrtc/CameraEnumerationAndroid.java",
155 "api/org/webrtc/CameraEnumerator.java", 155 "api/org/webrtc/CameraEnumerator.java",
156 "api/org/webrtc/CameraVideoCapturer.java", 156 "api/org/webrtc/CameraVideoCapturer.java",
157 "api/org/webrtc/DataChannel.java", 157 "api/org/webrtc/DataChannel.java",
158 "api/org/webrtc/DtmfSender.java", 158 "api/org/webrtc/DtmfSender.java",
159 "api/org/webrtc/EglBase.java", 159 "api/org/webrtc/EglBase.java",
160 "api/org/webrtc/EglBase10.java",
161 "api/org/webrtc/EglBase14.java",
162 "api/org/webrtc/EglRenderer.java", 160 "api/org/webrtc/EglRenderer.java",
163 "api/org/webrtc/FileVideoCapturer.java", 161 "api/org/webrtc/FileVideoCapturer.java",
164 "api/org/webrtc/GlRectDrawer.java", 162 "api/org/webrtc/GlRectDrawer.java",
165 "api/org/webrtc/GlShader.java", 163 "api/org/webrtc/GlShader.java",
166 "api/org/webrtc/GlTextureFrameBuffer.java", 164 "api/org/webrtc/GlTextureFrameBuffer.java",
167 "api/org/webrtc/GlUtil.java", 165 "api/org/webrtc/GlUtil.java",
168 "api/org/webrtc/IceCandidate.java", 166 "api/org/webrtc/IceCandidate.java",
169 "api/org/webrtc/MediaCodecVideoDecoder.java", 167 "api/org/webrtc/MediaCodecVideoDecoder.java",
170 "api/org/webrtc/MediaCodecVideoEncoder.java", 168 "api/org/webrtc/MediaCodecVideoEncoder.java",
171 "api/org/webrtc/MediaConstraints.java", 169 "api/org/webrtc/MediaConstraints.java",
(...skipping 21 matching lines...) Expand all
193 "api/org/webrtc/VideoCapturer.java", 191 "api/org/webrtc/VideoCapturer.java",
194 "api/org/webrtc/VideoFileRenderer.java", 192 "api/org/webrtc/VideoFileRenderer.java",
195 "api/org/webrtc/VideoRenderer.java", 193 "api/org/webrtc/VideoRenderer.java",
196 "api/org/webrtc/VideoSource.java", 194 "api/org/webrtc/VideoSource.java",
197 "api/org/webrtc/VideoTrack.java", 195 "api/org/webrtc/VideoTrack.java",
198 "src/java/org/webrtc/AndroidVideoTrackSourceObserver.java", 196 "src/java/org/webrtc/AndroidVideoTrackSourceObserver.java",
199 "src/java/org/webrtc/Camera1Session.java", 197 "src/java/org/webrtc/Camera1Session.java",
200 "src/java/org/webrtc/Camera2Session.java", 198 "src/java/org/webrtc/Camera2Session.java",
201 "src/java/org/webrtc/CameraCapturer.java", 199 "src/java/org/webrtc/CameraCapturer.java",
202 "src/java/org/webrtc/CameraSession.java", 200 "src/java/org/webrtc/CameraSession.java",
201 "src/java/org/webrtc/EglBase10.java",
202 "src/java/org/webrtc/EglBase14.java",
203 "src/java/org/webrtc/Histogram.java", 203 "src/java/org/webrtc/Histogram.java",
204 "src/java/org/webrtc/YuvConverter.java", 204 "src/java/org/webrtc/YuvConverter.java",
205 ] 205 ]
206 206
207 deps = [ 207 deps = [
208 "//webrtc/base:base_java", 208 "//webrtc/base:base_java",
209 "//webrtc/modules/audio_device:audio_device_java", 209 "//webrtc/modules/audio_device:audio_device_java",
210 ] 210 ]
211 } 211 }
212 212
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 "//third_party/android_support_test_runner:runner_java", 252 "//third_party/android_support_test_runner:runner_java",
253 "//third_party/junit", 253 "//third_party/junit",
254 "//webrtc/base:base_java", 254 "//webrtc/base:base_java",
255 "//webrtc/sdk/android:libjingle_peerconnection_java", 255 "//webrtc/sdk/android:libjingle_peerconnection_java",
256 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", 256 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java",
257 ] 257 ]
258 258
259 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] 259 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ]
260 } 260 }
261 } 261 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/sdk/android/api/org/webrtc/EglBase10.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698