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

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

Issue 2514383002: Move androidvideotracksource from api under api/android/jni. (Closed)
Patch Set: Created 4 years 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/OWNERS » ('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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 rtc_static_library("libjingle_peerconnection_jni") { 172 rtc_static_library("libjingle_peerconnection_jni") {
173 sources = [ 173 sources = [
174 "android/jni/androidmediacodeccommon.h", 174 "android/jni/androidmediacodeccommon.h",
175 "android/jni/androidmediadecoder_jni.cc", 175 "android/jni/androidmediadecoder_jni.cc",
176 "android/jni/androidmediadecoder_jni.h", 176 "android/jni/androidmediadecoder_jni.h",
177 "android/jni/androidmediaencoder_jni.cc", 177 "android/jni/androidmediaencoder_jni.cc",
178 "android/jni/androidmediaencoder_jni.h", 178 "android/jni/androidmediaencoder_jni.h",
179 "android/jni/androidmetrics_jni.cc", 179 "android/jni/androidmetrics_jni.cc",
180 "android/jni/androidnetworkmonitor_jni.cc", 180 "android/jni/androidnetworkmonitor_jni.cc",
181 "android/jni/androidnetworkmonitor_jni.h", 181 "android/jni/androidnetworkmonitor_jni.h",
182 "android/jni/androidvideotracksource.cc",
183 "android/jni/androidvideotracksource.h",
182 "android/jni/androidvideotracksource_jni.cc", 184 "android/jni/androidvideotracksource_jni.cc",
183 "android/jni/classreferenceholder.cc", 185 "android/jni/classreferenceholder.cc",
184 "android/jni/classreferenceholder.h", 186 "android/jni/classreferenceholder.h",
185 "android/jni/jni_helpers.cc", 187 "android/jni/jni_helpers.cc",
186 "android/jni/jni_helpers.h", 188 "android/jni/jni_helpers.h",
187 "android/jni/native_handle_impl.cc", 189 "android/jni/native_handle_impl.cc",
188 "android/jni/native_handle_impl.h", 190 "android/jni/native_handle_impl.h",
189 "android/jni/peerconnection_jni.cc", 191 "android/jni/peerconnection_jni.cc",
190 "android/jni/surfacetexturehelper_jni.cc", 192 "android/jni/surfacetexturehelper_jni.cc",
191 "android/jni/surfacetexturehelper_jni.h", 193 "android/jni/surfacetexturehelper_jni.h",
192 "androidvideotracksource.cc",
193 "androidvideotracksource.h",
194 ] 194 ]
195 195
196 configs += [ ":libjingle_peerconnection_jni_warnings_config" ] 196 configs += [ ":libjingle_peerconnection_jni_warnings_config" ]
197 197
198 if (!build_with_chromium && is_clang) { 198 if (!build_with_chromium && is_clang) {
199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
200 suppressed_configs += [ 200 suppressed_configs += [
201 "//build/config/clang:extra_warnings", 201 "//build/config/clang:extra_warnings",
202 "//build/config/clang:find_bad_constructs", 202 "//build/config/clang:find_bad_constructs",
203 ] 203 ]
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 deps = [ 486 deps = [
487 ":libjingle_peerconnection_java", 487 ":libjingle_peerconnection_java",
488 "../base:base_java", 488 "../base:base_java",
489 "//base:base_java", 489 "//base:base_java",
490 ] 490 ]
491 491
492 shared_libraries = [ ":libjingle_peerconnection_so" ] 492 shared_libraries = [ ":libjingle_peerconnection_so" ]
493 } 493 }
494 } 494 }
495 } 495 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698