| 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.gni") | 9 import("../webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 config("libjingle_peerconnection_warnings_config") { | 74 config("libjingle_peerconnection_warnings_config") { |
| 75 # GN orders flags on a target before flags from configs. The default config | 75 # GN orders flags on a target before flags from configs. The default config |
| 76 # adds these flags so to cancel them out they need to come from a config and | 76 # adds these flags so to cancel them out they need to come from a config and |
| 77 # cannot be on the target directly. | 77 # cannot be on the target directly. |
| 78 if (!is_win && !is_clang) { | 78 if (!is_win && !is_clang) { |
| 79 cflags = [ "-Wno-maybe-uninitialized" ] # Only exists for GCC. | 79 cflags = [ "-Wno-maybe-uninitialized" ] # Only exists for GCC. |
| 80 } | 80 } |
| 81 } | 81 } |
| 82 | 82 |
| 83 rtc_static_library("libjingle_peerconnection") { | 83 rtc_static_library("libjingle_peerconnection") { |
| 84 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) | |
| 85 cflags = [] | 84 cflags = [] |
| 86 sources = [ | 85 sources = [ |
| 87 "audiotrack.cc", | 86 "audiotrack.cc", |
| 88 "audiotrack.h", | 87 "audiotrack.h", |
| 89 "datachannel.cc", | 88 "datachannel.cc", |
| 90 "datachannel.h", | 89 "datachannel.h", |
| 91 "dtmfsender.cc", | 90 "dtmfsender.cc", |
| 92 "dtmfsender.h", | 91 "dtmfsender.h", |
| 93 "iceserverparsing.cc", | 92 "iceserverparsing.cc", |
| 94 "iceserverparsing.h", | 93 "iceserverparsing.h", |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 "//testing/gmock", | 362 "//testing/gmock", |
| 364 ] | 363 ] |
| 365 | 364 |
| 366 if (is_android) { | 365 if (is_android) { |
| 367 deps += [ "//testing/android/native_test:native_test_support" ] | 366 deps += [ "//testing/android/native_test:native_test_support" ] |
| 368 | 367 |
| 369 shard_timeout = 900 | 368 shard_timeout = 900 |
| 370 } | 369 } |
| 371 } | 370 } |
| 372 } | 371 } |
| OLD | NEW |