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

Side by Side Diff: webrtc/api/BUILD.gn

Issue 2187293002: Session based capturing for Camera1Capturer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@camera2session
Patch Set: Add missing setPictureSize. Created 4 years, 3 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/api/android/java/src/org/webrtc/Camera1Capturer.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) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 java_files = [ 238 java_files = [
239 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo .java", 239 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo .java",
240 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioEffects.java", 240 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioEffects.java",
241 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioManager.java", 241 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioManager.java",
242 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioRecord.java", 242 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioRecord.java",
243 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioTrack.java", 243 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioTrack.java",
244 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioUtils.java", 244 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioUtils.java",
245 "android/java/src/org/webrtc/AudioSource.java", 245 "android/java/src/org/webrtc/AudioSource.java",
246 "android/java/src/org/webrtc/AudioTrack.java", 246 "android/java/src/org/webrtc/AudioTrack.java",
247 "android/java/src/org/webrtc/CallSessionFileRotatingLogSink.java", 247 "android/java/src/org/webrtc/CallSessionFileRotatingLogSink.java",
248 "android/java/src/org/webrtc/Camera1Capturer.java",
248 "android/java/src/org/webrtc/Camera1Enumerator.java", 249 "android/java/src/org/webrtc/Camera1Enumerator.java",
250 "android/java/src/org/webrtc/Camera1Session.java",
249 "android/java/src/org/webrtc/Camera2Capturer.java", 251 "android/java/src/org/webrtc/Camera2Capturer.java",
250 "android/java/src/org/webrtc/Camera2Enumerator.java", 252 "android/java/src/org/webrtc/Camera2Enumerator.java",
251 "android/java/src/org/webrtc/Camera2Session.java", 253 "android/java/src/org/webrtc/Camera2Session.java",
252 "android/java/src/org/webrtc/CameraCapturer.java", 254 "android/java/src/org/webrtc/CameraCapturer.java",
253 "android/java/src/org/webrtc/CameraEnumerationAndroid.java", 255 "android/java/src/org/webrtc/CameraEnumerationAndroid.java",
254 "android/java/src/org/webrtc/CameraEnumerator.java", 256 "android/java/src/org/webrtc/CameraEnumerator.java",
255 "android/java/src/org/webrtc/CameraSession.java", 257 "android/java/src/org/webrtc/CameraSession.java",
256 "android/java/src/org/webrtc/CameraVideoCapturer.java", 258 "android/java/src/org/webrtc/CameraVideoCapturer.java",
257 "android/java/src/org/webrtc/DataChannel.java", 259 "android/java/src/org/webrtc/DataChannel.java",
258 "android/java/src/org/webrtc/EglBase.java", 260 "android/java/src/org/webrtc/EglBase.java",
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 448
447 shared_libraries = [ ":libjingle_peerconnection_so" ] 449 shared_libraries = [ ":libjingle_peerconnection_so" ]
448 } 450 }
449 451
450 android_resources("libjingle_peerconnection_android_unittest_resources") { 452 android_resources("libjingle_peerconnection_android_unittest_resources") {
451 resource_dirs = [ "androidtests/res" ] 453 resource_dirs = [ "androidtests/res" ]
452 custom_package = "org.webrtc" 454 custom_package = "org.webrtc"
453 } 455 }
454 } 456 }
455 } 457 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/android/java/src/org/webrtc/Camera1Capturer.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698