| OLD | NEW |
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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("//webrtc/webrtc.gni") | 9 import("//webrtc/build/webrtc.gni") |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| 11 import("//build/config/android/rules.gni") | 11 import("//build/config/android/rules.gni") |
| 12 | 12 |
| 13 config("libjingle_peerconnection_jni_warnings_config") { | 13 config("libjingle_peerconnection_jni_warnings_config") { |
| 14 # The warnings below are enabled by default. Since GN orders compiler flags | 14 # The warnings below are enabled by default. Since GN orders compiler flags |
| 15 # for a target before flags from configs, the only way to disable such | 15 # for a target before flags from configs, the only way to disable such |
| 16 # warnings is by having them in a separate config, loaded from the target. | 16 # warnings is by having them in a separate config, loaded from the target. |
| 17 if (!is_win) { | 17 if (!is_win) { |
| 18 cflags = [ | 18 cflags = [ |
| 19 "-Wno-sign-compare", | 19 "-Wno-sign-compare", |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 "//third_party/android_support_test_runner:runner_java", | 230 "//third_party/android_support_test_runner:runner_java", |
| 231 "//third_party/junit", | 231 "//third_party/junit", |
| 232 "//webrtc/base:base_java", | 232 "//webrtc/base:base_java", |
| 233 "//webrtc/sdk/android:libjingle_peerconnection_java", | 233 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 234 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", | 234 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", |
| 235 ] | 235 ] |
| 236 | 236 |
| 237 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] | 237 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] |
| 238 } | 238 } |
| 239 } | 239 } |
| OLD | NEW |