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

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: Cleanup. Created 4 years, 4 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) 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 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 java_files = [ 230 java_files = [
231 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo .java", 231 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/BuildInfo .java",
232 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioEffects.java", 232 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioEffects.java",
233 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioManager.java", 233 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioManager.java",
234 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioRecord.java", 234 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioRecord.java",
235 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioTrack.java", 235 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioTrack.java",
236 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioUtils.java", 236 "../modules/audio_device/android/java/src/org/webrtc/voiceengine/WebRtcAud ioUtils.java",
237 "android/java/src/org/webrtc/AudioSource.java", 237 "android/java/src/org/webrtc/AudioSource.java",
238 "android/java/src/org/webrtc/AudioTrack.java", 238 "android/java/src/org/webrtc/AudioTrack.java",
239 "android/java/src/org/webrtc/CallSessionFileRotatingLogSink.java", 239 "android/java/src/org/webrtc/CallSessionFileRotatingLogSink.java",
240 "android/java/src/org/webrtc/Camera1Capturer.java",
240 "android/java/src/org/webrtc/Camera1Enumerator.java", 241 "android/java/src/org/webrtc/Camera1Enumerator.java",
242 "android/java/src/org/webrtc/Camera1Session.java",
241 "android/java/src/org/webrtc/Camera2Capturer.java", 243 "android/java/src/org/webrtc/Camera2Capturer.java",
242 "android/java/src/org/webrtc/Camera2Enumerator.java", 244 "android/java/src/org/webrtc/Camera2Enumerator.java",
243 "android/java/src/org/webrtc/Camera2Session.java", 245 "android/java/src/org/webrtc/Camera2Session.java",
244 "android/java/src/org/webrtc/CameraCapturer.java", 246 "android/java/src/org/webrtc/CameraCapturer.java",
245 "android/java/src/org/webrtc/CameraEnumerationAndroid.java", 247 "android/java/src/org/webrtc/CameraEnumerationAndroid.java",
246 "android/java/src/org/webrtc/CameraEnumerator.java", 248 "android/java/src/org/webrtc/CameraEnumerator.java",
247 "android/java/src/org/webrtc/CameraSession.java", 249 "android/java/src/org/webrtc/CameraSession.java",
248 "android/java/src/org/webrtc/CameraVideoCapturer.java", 250 "android/java/src/org/webrtc/CameraVideoCapturer.java",
249 "android/java/src/org/webrtc/DataChannel.java", 251 "android/java/src/org/webrtc/DataChannel.java",
250 "android/java/src/org/webrtc/EglBase.java", 252 "android/java/src/org/webrtc/EglBase.java",
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 433
432 shared_libraries = [ ":libjingle_peerconnection_so" ] 434 shared_libraries = [ ":libjingle_peerconnection_so" ]
433 } 435 }
434 436
435 android_resources("libjingle_peerconnection_android_unittest_resources") { 437 android_resources("libjingle_peerconnection_android_unittest_resources") {
436 resource_dirs = [ "androidtests/res" ] 438 resource_dirs = [ "androidtests/res" ]
437 custom_package = "org.webrtc" 439 custom_package = "org.webrtc"
438 } 440 }
439 } 441 }
440 } 442 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698