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

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

Issue 2127893002: AndroidVideoTrackSource implementation (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@magjed-init
Patch Set: Fix cpplint errors. Created 4 years, 5 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/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 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 "android/jni/androidmediacodeccommon.h", 149 "android/jni/androidmediacodeccommon.h",
150 "android/jni/androidmediadecoder_jni.cc", 150 "android/jni/androidmediadecoder_jni.cc",
151 "android/jni/androidmediadecoder_jni.h", 151 "android/jni/androidmediadecoder_jni.h",
152 "android/jni/androidmediaencoder_jni.cc", 152 "android/jni/androidmediaencoder_jni.cc",
153 "android/jni/androidmediaencoder_jni.h", 153 "android/jni/androidmediaencoder_jni.h",
154 "android/jni/androidmetrics_jni.cc", 154 "android/jni/androidmetrics_jni.cc",
155 "android/jni/androidnetworkmonitor_jni.cc", 155 "android/jni/androidnetworkmonitor_jni.cc",
156 "android/jni/androidnetworkmonitor_jni.h", 156 "android/jni/androidnetworkmonitor_jni.h",
157 "android/jni/androidvideocapturer_jni.cc", 157 "android/jni/androidvideocapturer_jni.cc",
158 "android/jni/androidvideocapturer_jni.h", 158 "android/jni/androidvideocapturer_jni.h",
159 "android/jni/androidvideotracksource_jni.cc",
159 "android/jni/classreferenceholder.cc", 160 "android/jni/classreferenceholder.cc",
160 "android/jni/classreferenceholder.h", 161 "android/jni/classreferenceholder.h",
161 "android/jni/jni_helpers.cc", 162 "android/jni/jni_helpers.cc",
162 "android/jni/jni_helpers.h", 163 "android/jni/jni_helpers.h",
163 "android/jni/native_handle_impl.cc", 164 "android/jni/native_handle_impl.cc",
164 "android/jni/native_handle_impl.h", 165 "android/jni/native_handle_impl.h",
165 "android/jni/peerconnection_jni.cc", 166 "android/jni/peerconnection_jni.cc",
166 "android/jni/surfacetexturehelper_jni.cc", 167 "android/jni/surfacetexturehelper_jni.cc",
167 "android/jni/surfacetexturehelper_jni.h", 168 "android/jni/surfacetexturehelper_jni.h",
168 "androidvideocapturer.cc", 169 "androidvideocapturer.cc",
169 "androidvideocapturer.h", 170 "androidvideocapturer.h",
171 "androidvideotracksource.cc",
172 "androidvideotracksource.h",
170 ] 173 ]
171 174
172 configs += [ 175 configs += [
173 "..:common_config", 176 "..:common_config",
174 ":libjingle_peerconnection_jni_warnings_config", 177 ":libjingle_peerconnection_jni_warnings_config",
175 ] 178 ]
176 public_configs = [ "..:common_inherited_config" ] 179 public_configs = [ "..:common_inherited_config" ]
177 180
178 if (is_clang) { 181 if (is_clang) {
179 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 182 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 "../pc:rtc_pc", 393 "../pc:rtc_pc",
391 "../system_wrappers:metrics_default", 394 "../system_wrappers:metrics_default",
392 "//testing/gmock", 395 "//testing/gmock",
393 ] 396 ]
394 397
395 if (is_android) { 398 if (is_android) {
396 deps += [ "//testing/android/native_test:native_test_support" ] 399 deps += [ "//testing/android/native_test:native_test_support" ]
397 } 400 }
398 } 401 }
399 } 402 }
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