OLD | NEW |
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 25 matching lines...) Expand all Loading... |
36 ], | 36 ], |
37 'sources': [ | 37 'sources': [ |
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', |
| 47 'android/jni/androidvideocapturer_jni.h', |
46 'android/jni/androidvideotracksource_jni.cc', | 48 'android/jni/androidvideotracksource_jni.cc', |
47 'android/jni/classreferenceholder.cc', | 49 'android/jni/classreferenceholder.cc', |
48 'android/jni/classreferenceholder.h', | 50 'android/jni/classreferenceholder.h', |
49 'android/jni/jni_helpers.cc', | 51 'android/jni/jni_helpers.cc', |
50 'android/jni/jni_helpers.h', | 52 'android/jni/jni_helpers.h', |
51 'android/jni/native_handle_impl.cc', | 53 'android/jni/native_handle_impl.cc', |
52 'android/jni/native_handle_impl.h', | 54 'android/jni/native_handle_impl.h', |
53 'android/jni/peerconnection_jni.cc', | 55 'android/jni/peerconnection_jni.cc', |
54 'android/jni/surfacetexturehelper_jni.cc', | 56 'android/jni/surfacetexturehelper_jni.cc', |
55 'android/jni/surfacetexturehelper_jni.h', | 57 'android/jni/surfacetexturehelper_jni.h', |
| 58 'androidvideocapturer.cc', |
| 59 'androidvideocapturer.h', |
56 'androidvideotracksource.cc', | 60 'androidvideotracksource.cc', |
57 'androidvideotracksource.h', | 61 'androidvideotracksource.h', |
58 ], | 62 ], |
59 'include_dirs': [ | 63 'include_dirs': [ |
60 '<(libyuv_dir)/include', | 64 '<(libyuv_dir)/include', |
61 ], | 65 ], |
62 # TODO(kjellander): Make the code compile without disabling these flag
s. | 66 # TODO(kjellander): Make the code compile without disabling these flag
s. |
63 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 | 67 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 |
64 'cflags': [ | 68 'cflags': [ |
65 '-Wno-sign-compare', | 69 '-Wno-sign-compare', |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 'quicdatatransport.h', | 198 'quicdatatransport.h', |
195 ], | 199 ], |
196 'export_dependent_settings': [ | 200 'export_dependent_settings': [ |
197 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', | 201 '<(DEPTH)/third_party/libquic/libquic.gyp:libquic', |
198 ], | 202 ], |
199 }], | 203 }], |
200 ], | 204 ], |
201 }, # target libjingle_peerconnection | 205 }, # target libjingle_peerconnection |
202 ], # targets | 206 ], # targets |
203 } | 207 } |
OLD | NEW |