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

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

Issue 2984633002: Add a field trial to produce VideoFrames in camera capturers. (Closed)
Patch Set: Update log message. Created 3 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) 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.gni") 9 import("../../webrtc.gni")
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 rtc_static_library("video_jni") { 89 rtc_static_library("video_jni") {
90 sources = [ 90 sources = [
91 "src/jni/androidmediacodeccommon.h", 91 "src/jni/androidmediacodeccommon.h",
92 "src/jni/androidmediadecoder_jni.cc", 92 "src/jni/androidmediadecoder_jni.cc",
93 "src/jni/androidmediadecoder_jni.h", 93 "src/jni/androidmediadecoder_jni.h",
94 "src/jni/androidmediaencoder_jni.cc", 94 "src/jni/androidmediaencoder_jni.cc",
95 "src/jni/androidmediaencoder_jni.h", 95 "src/jni/androidmediaencoder_jni.h",
96 "src/jni/androidvideotracksource.cc", 96 "src/jni/androidvideotracksource.cc",
97 "src/jni/androidvideotracksource.h", 97 "src/jni/androidvideotracksource.h",
98 "src/jni/androidvideotracksource_jni.cc", 98 "src/jni/androidvideotracksource_jni.cc",
99 "src/jni/camera1session_jni.cc",
99 "src/jni/filevideocapturer_jni.cc", 100 "src/jni/filevideocapturer_jni.cc",
100 "src/jni/native_handle_impl.cc", 101 "src/jni/native_handle_impl.cc",
101 "src/jni/native_handle_impl.h", 102 "src/jni/native_handle_impl.h",
102 "src/jni/surfacetexturehelper_jni.cc", 103 "src/jni/surfacetexturehelper_jni.cc",
103 "src/jni/surfacetexturehelper_jni.h", 104 "src/jni/surfacetexturehelper_jni.h",
104 "src/jni/video_jni.cc", 105 "src/jni/video_jni.cc",
105 "src/jni/video_renderer_jni.cc", 106 "src/jni/video_renderer_jni.cc",
106 "src/jni/videodecoderfactorywrapper.cc", 107 "src/jni/videodecoderfactorywrapper.cc",
107 "src/jni/videodecoderfactorywrapper.h", 108 "src/jni/videodecoderfactorywrapper.h",
108 "src/jni/videodecoderwrapper.cc", 109 "src/jni/videodecoderwrapper.cc",
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 "//base:base_java", 465 "//base:base_java",
465 "//base:base_java_test_support", 466 "//base:base_java_test_support",
466 "//third_party/android_support_test_runner:rules_java", 467 "//third_party/android_support_test_runner:rules_java",
467 "//third_party/android_support_test_runner:runner_java", 468 "//third_party/android_support_test_runner:runner_java",
468 "//third_party/junit", 469 "//third_party/junit",
469 ] 470 ]
470 471
471 shared_libraries = [ "../../sdk/android:libjingle_peerconnection_so" ] 472 shared_libraries = [ "../../sdk/android:libjingle_peerconnection_so" ]
472 } 473 }
473 } 474 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698