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 | 10 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 "client/basicportallocator.h", | 80 "client/basicportallocator.h", |
81 "client/socketmonitor.cc", | 81 "client/socketmonitor.cc", |
82 "client/socketmonitor.h", | 82 "client/socketmonitor.h", |
83 ] | 83 ] |
84 | 84 |
85 defines = [] | 85 defines = [] |
86 | 86 |
87 deps = [ | 87 deps = [ |
88 "../api:libjingle_peerconnection_api", | 88 "../api:libjingle_peerconnection_api", |
89 "../api:ortc_api", | 89 "../api:ortc_api", |
90 "../logging:rtc_event_log_api", | |
91 "../rtc_base:rtc_base", | 90 "../rtc_base:rtc_base", |
92 "../system_wrappers:field_trial_api", | 91 "../system_wrappers:field_trial_api", |
93 ] | 92 ] |
94 | 93 |
95 public_configs = [ ":rtc_p2p_inherited_config" ] | 94 public_configs = [ ":rtc_p2p_inherited_config" ] |
96 | 95 |
97 if (build_with_chromium) { | 96 if (build_with_chromium) { |
98 if (is_nacl) { | 97 if (is_nacl) { |
99 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 98 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
100 } | 99 } |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 "//testing/gmock", | 264 "//testing/gmock", |
266 "//testing/gtest", | 265 "//testing/gtest", |
267 ] | 266 ] |
268 if (!build_with_chromium && is_clang) { | 267 if (!build_with_chromium && is_clang) { |
269 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 268 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
270 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 269 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
271 } | 270 } |
272 defines = [ "GTEST_RELATIVE_PATH" ] | 271 defines = [ "GTEST_RELATIVE_PATH" ] |
273 } | 272 } |
274 } | 273 } |
OLD | NEW |