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

Side by Side Diff: webrtc/api/api.gyp

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
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 { 9 {
10 'includes': [ '../build/common.gypi', ], 10 'includes': [ '../build/common.gypi', ],
(...skipping 27 matching lines...) Expand all
38 'android/jni/androidmediacodeccommon.h', 38 'android/jni/androidmediacodeccommon.h',
39 'android/jni/androidmediadecoder_jni.cc', 39 'android/jni/androidmediadecoder_jni.cc',
40 'android/jni/androidmediadecoder_jni.h', 40 'android/jni/androidmediadecoder_jni.h',
41 'android/jni/androidmediaencoder_jni.cc', 41 'android/jni/androidmediaencoder_jni.cc',
42 'android/jni/androidmediaencoder_jni.h', 42 'android/jni/androidmediaencoder_jni.h',
43 'android/jni/androidmetrics_jni.cc', 43 'android/jni/androidmetrics_jni.cc',
44 'android/jni/androidnetworkmonitor_jni.cc', 44 'android/jni/androidnetworkmonitor_jni.cc',
45 'android/jni/androidnetworkmonitor_jni.h', 45 'android/jni/androidnetworkmonitor_jni.h',
46 'android/jni/androidvideocapturer_jni.cc', 46 'android/jni/androidvideocapturer_jni.cc',
47 'android/jni/androidvideocapturer_jni.h', 47 'android/jni/androidvideocapturer_jni.h',
48 'android/jni/androidvideotracksource_jni.cc',
48 'android/jni/classreferenceholder.cc', 49 'android/jni/classreferenceholder.cc',
49 'android/jni/classreferenceholder.h', 50 'android/jni/classreferenceholder.h',
50 'android/jni/jni_helpers.cc', 51 'android/jni/jni_helpers.cc',
51 'android/jni/jni_helpers.h', 52 'android/jni/jni_helpers.h',
52 'android/jni/native_handle_impl.cc', 53 'android/jni/native_handle_impl.cc',
53 'android/jni/native_handle_impl.h', 54 'android/jni/native_handle_impl.h',
54 'android/jni/peerconnection_jni.cc', 55 'android/jni/peerconnection_jni.cc',
55 'android/jni/surfacetexturehelper_jni.cc', 56 'android/jni/surfacetexturehelper_jni.cc',
56 'android/jni/surfacetexturehelper_jni.h', 57 'android/jni/surfacetexturehelper_jni.h',
57 'androidvideocapturer.cc', 58 'androidvideocapturer.cc',
58 'androidvideocapturer.h', 59 'androidvideocapturer.h',
60 'androidvideotracksource.cc',
61 'androidvideotracksource.h',
59 ], 62 ],
60 'include_dirs': [ 63 'include_dirs': [
61 '<(libyuv_dir)/include', 64 '<(libyuv_dir)/include',
62 ], 65 ],
63 # TODO(kjellander): Make the code compile without disabling these flag s. 66 # TODO(kjellander): Make the code compile without disabling these flag s.
64 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 67 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307
65 'cflags': [ 68 'cflags': [
66 '-Wno-sign-compare', 69 '-Wno-sign-compare',
67 '-Wno-unused-variable', 70 '-Wno-unused-variable',
68 ], 71 ],
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 'quicdatatransport.h', 196 'quicdatatransport.h',
194 ], 197 ],
195 'export_dependent_settings': [ 198 'export_dependent_settings': [
196 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', 199 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic',
197 ], 200 ],
198 }], 201 }],
199 ], 202 ],
200 }, # target libjingle_peerconnection 203 }, # target libjingle_peerconnection
201 ], # targets 204 ], # targets
202 } 205 }
OLDNEW
« no previous file with comments | « webrtc/api/androidvideotracksource.cc ('k') | webrtc/examples/androidapp/src/org/appspot/apprtc/PeerConnectionClient.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698