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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 | 10 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 "../libjingle/xmllite", | 88 "../libjingle/xmllite", |
89 ] | 89 ] |
90 | 90 |
91 if (rtc_build_expat) { | 91 if (rtc_build_expat) { |
92 deps += [ "//third_party/expat" ] | 92 deps += [ "//third_party/expat" ] |
93 public_deps = [ | 93 public_deps = [ |
94 "//third_party/expat", | 94 "//third_party/expat", |
95 ] | 95 ] |
96 } | 96 } |
97 | 97 |
98 public_configs = [ | 98 public_configs = [ ":rtc_p2p_inherited_config" ] |
99 "..:common_inherited_config", | |
100 ":rtc_p2p_inherited_config", | |
101 ] | |
102 | 99 |
103 if (build_with_chromium) { | 100 if (build_with_chromium) { |
104 if (is_nacl) { | 101 if (is_nacl) { |
105 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 102 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
106 } | 103 } |
107 } else { | 104 } else { |
108 sources += [ | 105 sources += [ |
109 "base/relayserver.cc", | 106 "base/relayserver.cc", |
110 "base/relayserver.h", | 107 "base/relayserver.h", |
111 "base/stunserver.cc", | 108 "base/stunserver.cc", |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 172 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
176 } | 173 } |
177 | 174 |
178 deps = [ | 175 deps = [ |
179 ":libstunprober", | 176 ":libstunprober", |
180 ":rtc_p2p", | 177 ":rtc_p2p", |
181 "../system_wrappers:field_trial_default", | 178 "../system_wrappers:field_trial_default", |
182 ] | 179 ] |
183 } | 180 } |
184 } | 181 } |
OLD | NEW |