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

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

Issue 3003873002: Bindings for injectable Java video encoders. (Closed)
Patch Set: Fix tests Created 3 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/sdk/android/api/org/webrtc/EncodedImage.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.gni") 9 import("../../webrtc.gni")
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 "src/jni/nv12buffer_jni.cc", 101 "src/jni/nv12buffer_jni.cc",
102 "src/jni/nv21buffer_jni.cc", 102 "src/jni/nv21buffer_jni.cc",
103 "src/jni/pc/video_jni.cc", 103 "src/jni/pc/video_jni.cc",
104 "src/jni/surfacetexturehelper_jni.cc", 104 "src/jni/surfacetexturehelper_jni.cc",
105 "src/jni/surfacetexturehelper_jni.h", 105 "src/jni/surfacetexturehelper_jni.h",
106 "src/jni/video_renderer_jni.cc", 106 "src/jni/video_renderer_jni.cc",
107 "src/jni/videodecoderfactorywrapper.cc", 107 "src/jni/videodecoderfactorywrapper.cc",
108 "src/jni/videodecoderfactorywrapper.h", 108 "src/jni/videodecoderfactorywrapper.h",
109 "src/jni/videodecoderwrapper.cc", 109 "src/jni/videodecoderwrapper.cc",
110 "src/jni/videodecoderwrapper.h", 110 "src/jni/videodecoderwrapper.h",
111 "src/jni/videoencoderfactorywrapper.cc",
112 "src/jni/videoencoderfactorywrapper.h",
113 "src/jni/videoencoderwrapper.cc",
114 "src/jni/videoencoderwrapper.h",
111 "src/jni/videofilerenderer_jni.cc", 115 "src/jni/videofilerenderer_jni.cc",
112 "src/jni/videoframe_jni.cc", 116 "src/jni/videoframe_jni.cc",
113 "src/jni/videotrack_jni.cc", 117 "src/jni/videotrack_jni.cc",
114 "src/jni/wrapped_native_i420_buffer.cc", 118 "src/jni/wrapped_native_i420_buffer.cc",
115 "src/jni/wrapped_native_i420_buffer.h", 119 "src/jni/wrapped_native_i420_buffer.h",
116 ] 120 ]
117 121
118 configs += [ ":libjingle_peerconnection_jni_warnings_config" ] 122 configs += [ ":libjingle_peerconnection_jni_warnings_config" ]
119 123
120 if (is_clang) { 124 if (is_clang) {
(...skipping 17 matching lines...) Expand all
138 deps = [ 142 deps = [
139 ":base_jni", 143 ":base_jni",
140 ":peerconnection_jni", 144 ":peerconnection_jni",
141 "../..:webrtc_common", 145 "../..:webrtc_common",
142 "../../api:libjingle_peerconnection_api", 146 "../../api:libjingle_peerconnection_api",
143 "../../api:video_frame_api", 147 "../../api:video_frame_api",
144 "../../api/video_codecs:video_codecs_api", 148 "../../api/video_codecs:video_codecs_api",
145 "../../common_video:common_video", 149 "../../common_video:common_video",
146 "../../media:rtc_audio_video", 150 "../../media:rtc_audio_video",
147 "../../media:rtc_media_base", 151 "../../media:rtc_media_base",
152 "../../modules:module_api",
148 "../../modules/utility:utility", 153 "../../modules/utility:utility",
149 "../../modules/video_coding:video_coding_utility", 154 "../../modules/video_coding:video_coding_utility",
150 "../../rtc_base:rtc_base", 155 "../../rtc_base:rtc_base",
151 "../../rtc_base:rtc_base_approved", 156 "../../rtc_base:rtc_base_approved",
152 "../../rtc_base:rtc_task_queue", 157 "../../rtc_base:rtc_task_queue",
153 "../../rtc_base:sequenced_task_checker", 158 "../../rtc_base:sequenced_task_checker",
154 "../../rtc_base:weak_ptr", 159 "../../rtc_base:weak_ptr",
155 "../../system_wrappers:system_wrappers", 160 "../../system_wrappers:system_wrappers",
156 ] 161 ]
157 162
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 "src/java/org/webrtc/HardwareVideoEncoder.java", 443 "src/java/org/webrtc/HardwareVideoEncoder.java",
439 "src/java/org/webrtc/Histogram.java", 444 "src/java/org/webrtc/Histogram.java",
440 "src/java/org/webrtc/I420BufferImpl.java", 445 "src/java/org/webrtc/I420BufferImpl.java",
441 "src/java/org/webrtc/JniCommon.java", 446 "src/java/org/webrtc/JniCommon.java",
442 "src/java/org/webrtc/MediaCodecUtils.java", 447 "src/java/org/webrtc/MediaCodecUtils.java",
443 "src/java/org/webrtc/NV12Buffer.java", 448 "src/java/org/webrtc/NV12Buffer.java",
444 "src/java/org/webrtc/NV21Buffer.java", 449 "src/java/org/webrtc/NV21Buffer.java",
445 "src/java/org/webrtc/TextureBufferImpl.java", 450 "src/java/org/webrtc/TextureBufferImpl.java",
446 "src/java/org/webrtc/VideoCodecType.java", 451 "src/java/org/webrtc/VideoCodecType.java",
447 "src/java/org/webrtc/VideoDecoderWrapperCallback.java", 452 "src/java/org/webrtc/VideoDecoderWrapperCallback.java",
453 "src/java/org/webrtc/VideoEncoderWrapperCallback.java",
448 "src/java/org/webrtc/WrappedNativeI420Buffer.java", 454 "src/java/org/webrtc/WrappedNativeI420Buffer.java",
449 "src/java/org/webrtc/YuvConverter.java", 455 "src/java/org/webrtc/YuvConverter.java",
450 ] 456 ]
451 457
452 deps = [ 458 deps = [
453 "../../modules/audio_device:audio_device_java", 459 "../../modules/audio_device:audio_device_java",
454 "../../rtc_base:base_java", 460 "../../rtc_base:base_java",
455 ] 461 ]
456 462
457 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 463 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 "//third_party/android_support_test_runner:runner_java", 514 "//third_party/android_support_test_runner:runner_java",
509 "//third_party/junit", 515 "//third_party/junit",
510 ] 516 ]
511 517
512 shared_libraries = [ "../../sdk/android:libjingle_peerconnection_so" ] 518 shared_libraries = [ "../../sdk/android:libjingle_peerconnection_so" ]
513 519
514 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 520 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148
515 no_build_hooks = true 521 no_build_hooks = true
516 } 522 }
517 } 523 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/sdk/android/api/org/webrtc/EncodedImage.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698