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