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