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 16 matching lines...) Expand all Loading... |
27 { | 27 { |
28 'target_name': 'libjingle_peerconnection_jni', | 28 'target_name': 'libjingle_peerconnection_jni', |
29 'type': 'static_library', | 29 'type': 'static_library', |
30 'dependencies': [ | 30 'dependencies': [ |
31 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa
ult', | 31 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa
ult', |
32 'libjingle_peerconnection', | 32 'libjingle_peerconnection', |
33 ], | 33 ], |
34 'sources': [ | 34 'sources': [ |
35 'androidvideocapturer.cc', | 35 'androidvideocapturer.cc', |
36 'androidvideocapturer.h', | 36 'androidvideocapturer.h', |
| 37 'java/jni/androidhistograms_jni.cc', |
37 'java/jni/androidmediacodeccommon.h', | 38 'java/jni/androidmediacodeccommon.h', |
38 'java/jni/androidmediadecoder_jni.cc', | 39 'java/jni/androidmediadecoder_jni.cc', |
39 'java/jni/androidmediadecoder_jni.h', | 40 'java/jni/androidmediadecoder_jni.h', |
40 'java/jni/androidmediaencoder_jni.cc', | 41 'java/jni/androidmediaencoder_jni.cc', |
41 'java/jni/androidmediaencoder_jni.h', | 42 'java/jni/androidmediaencoder_jni.h', |
42 'java/jni/androidnetworkmonitor_jni.cc', | 43 'java/jni/androidnetworkmonitor_jni.cc', |
43 'java/jni/androidnetworkmonitor_jni.h', | 44 'java/jni/androidnetworkmonitor_jni.h', |
44 'java/jni/androidvideocapturer_jni.cc', | 45 'java/jni/androidvideocapturer_jni.cc', |
45 'java/jni/androidvideocapturer_jni.h', | 46 'java/jni/androidvideocapturer_jni.h', |
46 'java/jni/surfacetexturehelper_jni.cc', | 47 'java/jni/surfacetexturehelper_jni.cc', |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 'AdditionalOptions': [ | 238 'AdditionalOptions': [ |
238 '-Wno-sign-compare', | 239 '-Wno-sign-compare', |
239 ], | 240 ], |
240 }, | 241 }, |
241 }, | 242 }, |
242 }], | 243 }], |
243 ], | 244 ], |
244 }, # target libjingle_peerconnection | 245 }, # target libjingle_peerconnection |
245 ], # targets | 246 ], # targets |
246 } | 247 } |
OLD | NEW |