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

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

Issue 2426023002: Android: Move YuvConverter to its own file (Closed)
Patch Set: Fix comment in webrtc/api/android/jni/native_handle_impl.cc Created 4 years, 2 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 if (is_android) { 10 if (is_android) {
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 "android/java/src/org/webrtc/StatsObserver.java", 287 "android/java/src/org/webrtc/StatsObserver.java",
288 "android/java/src/org/webrtc/StatsReport.java", 288 "android/java/src/org/webrtc/StatsReport.java",
289 "android/java/src/org/webrtc/SurfaceTextureHelper.java", 289 "android/java/src/org/webrtc/SurfaceTextureHelper.java",
290 "android/java/src/org/webrtc/SurfaceViewRenderer.java", 290 "android/java/src/org/webrtc/SurfaceViewRenderer.java",
291 "android/java/src/org/webrtc/VideoCapturer.java", 291 "android/java/src/org/webrtc/VideoCapturer.java",
292 "android/java/src/org/webrtc/VideoCapturerAndroid.java", 292 "android/java/src/org/webrtc/VideoCapturerAndroid.java",
293 "android/java/src/org/webrtc/VideoRenderer.java", 293 "android/java/src/org/webrtc/VideoRenderer.java",
294 "android/java/src/org/webrtc/VideoRendererGui.java", 294 "android/java/src/org/webrtc/VideoRendererGui.java",
295 "android/java/src/org/webrtc/VideoSource.java", 295 "android/java/src/org/webrtc/VideoSource.java",
296 "android/java/src/org/webrtc/VideoTrack.java", 296 "android/java/src/org/webrtc/VideoTrack.java",
297 "android/java/src/org/webrtc/YuvConverter.java",
297 ] 298 ]
298 299
299 deps = [ 300 deps = [
300 "//webrtc/base:base_java", 301 "//webrtc/base:base_java",
301 ] 302 ]
302 } 303 }
303 } 304 }
304 305
305 # GYP version: webrtc/api/api.gyp:rtc_stats_api 306 # GYP version: webrtc/api/api.gyp:rtc_stats_api
306 rtc_source_set("rtc_stats_api") { 307 rtc_source_set("rtc_stats_api") {
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 466
466 shared_libraries = [ ":libjingle_peerconnection_so" ] 467 shared_libraries = [ ":libjingle_peerconnection_so" ]
467 } 468 }
468 469
469 android_resources("libjingle_peerconnection_android_unittest_resources") { 470 android_resources("libjingle_peerconnection_android_unittest_resources") {
470 resource_dirs = [ "androidtests/res" ] 471 resource_dirs = [ "androidtests/res" ]
471 custom_package = "org.webrtc" 472 custom_package = "org.webrtc"
472 } 473 }
473 } 474 }
474 } 475 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698