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

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

Issue 2699713004: Move camera implementation details away from the public API. (Closed)
Patch Set: Created 3 years, 10 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/Camera1Session.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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 ] 123 ]
124 } 124 }
125 125
126 android_library("libjingle_peerconnection_java") { 126 android_library("libjingle_peerconnection_java") {
127 java_files = [ 127 java_files = [
128 "api/org/webrtc/AudioSource.java", 128 "api/org/webrtc/AudioSource.java",
129 "api/org/webrtc/AudioTrack.java", 129 "api/org/webrtc/AudioTrack.java",
130 "api/org/webrtc/CallSessionFileRotatingLogSink.java", 130 "api/org/webrtc/CallSessionFileRotatingLogSink.java",
131 "api/org/webrtc/Camera1Capturer.java", 131 "api/org/webrtc/Camera1Capturer.java",
132 "api/org/webrtc/Camera1Enumerator.java", 132 "api/org/webrtc/Camera1Enumerator.java",
133 "api/org/webrtc/Camera1Session.java",
134 "api/org/webrtc/Camera2Capturer.java", 133 "api/org/webrtc/Camera2Capturer.java",
135 "api/org/webrtc/Camera2Enumerator.java", 134 "api/org/webrtc/Camera2Enumerator.java",
136 "api/org/webrtc/Camera2Session.java",
137 "api/org/webrtc/CameraCapturer.java",
138 "api/org/webrtc/CameraEnumerationAndroid.java", 135 "api/org/webrtc/CameraEnumerationAndroid.java",
139 "api/org/webrtc/CameraEnumerator.java", 136 "api/org/webrtc/CameraEnumerator.java",
140 "api/org/webrtc/CameraSession.java",
141 "api/org/webrtc/CameraVideoCapturer.java", 137 "api/org/webrtc/CameraVideoCapturer.java",
142 "api/org/webrtc/DataChannel.java", 138 "api/org/webrtc/DataChannel.java",
143 "api/org/webrtc/DtmfSender.java", 139 "api/org/webrtc/DtmfSender.java",
144 "api/org/webrtc/EglBase.java", 140 "api/org/webrtc/EglBase.java",
145 "api/org/webrtc/EglBase10.java", 141 "api/org/webrtc/EglBase10.java",
146 "api/org/webrtc/EglBase14.java", 142 "api/org/webrtc/EglBase14.java",
147 "api/org/webrtc/EglRenderer.java", 143 "api/org/webrtc/EglRenderer.java",
148 "api/org/webrtc/FileVideoCapturer.java", 144 "api/org/webrtc/FileVideoCapturer.java",
149 "api/org/webrtc/GlRectDrawer.java", 145 "api/org/webrtc/GlRectDrawer.java",
150 "api/org/webrtc/GlShader.java", 146 "api/org/webrtc/GlShader.java",
(...skipping 22 matching lines...) Expand all
173 "api/org/webrtc/StatsReport.java", 169 "api/org/webrtc/StatsReport.java",
174 "api/org/webrtc/SurfaceTextureHelper.java", 170 "api/org/webrtc/SurfaceTextureHelper.java",
175 "api/org/webrtc/SurfaceViewRenderer.java", 171 "api/org/webrtc/SurfaceViewRenderer.java",
176 "api/org/webrtc/VideoCapturer.java", 172 "api/org/webrtc/VideoCapturer.java",
177 "api/org/webrtc/VideoCapturerAndroid.java", 173 "api/org/webrtc/VideoCapturerAndroid.java",
178 "api/org/webrtc/VideoFileRenderer.java", 174 "api/org/webrtc/VideoFileRenderer.java",
179 "api/org/webrtc/VideoRenderer.java", 175 "api/org/webrtc/VideoRenderer.java",
180 "api/org/webrtc/VideoSource.java", 176 "api/org/webrtc/VideoSource.java",
181 "api/org/webrtc/VideoTrack.java", 177 "api/org/webrtc/VideoTrack.java",
182 "api/org/webrtc/YuvConverter.java", 178 "api/org/webrtc/YuvConverter.java",
179 "src/java/org/webrtc/Camera1Session.java",
180 "src/java/org/webrtc/Camera2Session.java",
181 "src/java/org/webrtc/CameraCapturer.java",
182 "src/java/org/webrtc/CameraSession.java",
183 ] 183 ]
184 184
185 deps = [ 185 deps = [
186 "//webrtc/base:base_java", 186 "//webrtc/base:base_java",
187 "//webrtc/modules/audio_device:audio_device_java", 187 "//webrtc/modules/audio_device:audio_device_java",
188 ] 188 ]
189 } 189 }
190 190
191 android_library("libjingle_peerconnection_metrics_default_java") { 191 android_library("libjingle_peerconnection_metrics_default_java") {
192 java_files = [ "api/org/webrtc/Metrics.java" ] 192 java_files = [ "api/org/webrtc/Metrics.java" ]
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 "//third_party/android_support_test_runner:runner_java", 230 "//third_party/android_support_test_runner:runner_java",
231 "//third_party/junit", 231 "//third_party/junit",
232 "//webrtc/base:base_java", 232 "//webrtc/base:base_java",
233 "//webrtc/sdk/android:libjingle_peerconnection_java", 233 "//webrtc/sdk/android:libjingle_peerconnection_java",
234 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", 234 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java",
235 ] 235 ]
236 236
237 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] 237 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ]
238 } 238 }
239 } 239 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/sdk/android/api/org/webrtc/Camera1Session.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698