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 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 Loading... |
149 source_set("libjingle_peerconnection_jni") { | 149 source_set("libjingle_peerconnection_jni") { |
150 sources = [ | 150 sources = [ |
151 "android/jni/androidmediacodeccommon.h", | 151 "android/jni/androidmediacodeccommon.h", |
152 "android/jni/androidmediadecoder_jni.cc", | 152 "android/jni/androidmediadecoder_jni.cc", |
153 "android/jni/androidmediadecoder_jni.h", | 153 "android/jni/androidmediadecoder_jni.h", |
154 "android/jni/androidmediaencoder_jni.cc", | 154 "android/jni/androidmediaencoder_jni.cc", |
155 "android/jni/androidmediaencoder_jni.h", | 155 "android/jni/androidmediaencoder_jni.h", |
156 "android/jni/androidmetrics_jni.cc", | 156 "android/jni/androidmetrics_jni.cc", |
157 "android/jni/androidnetworkmonitor_jni.cc", | 157 "android/jni/androidnetworkmonitor_jni.cc", |
158 "android/jni/androidnetworkmonitor_jni.h", | 158 "android/jni/androidnetworkmonitor_jni.h", |
159 "android/jni/androidvideocapturer_jni.cc", | |
160 "android/jni/androidvideocapturer_jni.h", | |
161 "android/jni/androidvideotracksource_jni.cc", | 159 "android/jni/androidvideotracksource_jni.cc", |
162 "android/jni/classreferenceholder.cc", | 160 "android/jni/classreferenceholder.cc", |
163 "android/jni/classreferenceholder.h", | 161 "android/jni/classreferenceholder.h", |
164 "android/jni/jni_helpers.cc", | 162 "android/jni/jni_helpers.cc", |
165 "android/jni/jni_helpers.h", | 163 "android/jni/jni_helpers.h", |
166 "android/jni/native_handle_impl.cc", | 164 "android/jni/native_handle_impl.cc", |
167 "android/jni/native_handle_impl.h", | 165 "android/jni/native_handle_impl.h", |
168 "android/jni/peerconnection_jni.cc", | 166 "android/jni/peerconnection_jni.cc", |
169 "android/jni/surfacetexturehelper_jni.cc", | 167 "android/jni/surfacetexturehelper_jni.cc", |
170 "android/jni/surfacetexturehelper_jni.h", | 168 "android/jni/surfacetexturehelper_jni.h", |
171 "androidvideocapturer.cc", | |
172 "androidvideocapturer.h", | |
173 "androidvideotracksource.cc", | 169 "androidvideotracksource.cc", |
174 "androidvideotracksource.h", | 170 "androidvideotracksource.h", |
175 ] | 171 ] |
176 | 172 |
177 configs += [ | 173 configs += [ |
178 "..:common_config", | 174 "..:common_config", |
179 ":libjingle_peerconnection_jni_warnings_config", | 175 ":libjingle_peerconnection_jni_warnings_config", |
180 ] | 176 ] |
181 public_configs = [ "..:common_inherited_config" ] | 177 public_configs = [ "..:common_inherited_config" ] |
182 | 178 |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 | 435 |
440 shared_libraries = [ ":libjingle_peerconnection_so" ] | 436 shared_libraries = [ ":libjingle_peerconnection_so" ] |
441 } | 437 } |
442 | 438 |
443 android_resources("libjingle_peerconnection_android_unittest_resources") { | 439 android_resources("libjingle_peerconnection_android_unittest_resources") { |
444 resource_dirs = [ "androidtests/res" ] | 440 resource_dirs = [ "androidtests/res" ] |
445 custom_package = "org.webrtc" | 441 custom_package = "org.webrtc" |
446 } | 442 } |
447 } | 443 } |
448 } | 444 } |
OLD | NEW |