OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 | 7 |
8 # From third_party/libjingle/libjingle.gyp's target_defaults. | 8 # From third_party/libjingle/libjingle.gyp's target_defaults. |
9 config("jingle_unexported_configs") { | 9 config("jingle_unexported_configs") { |
10 defines = [ | 10 defines = [ |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 "$p2p_dir/base/dtlstransportchannel.cc", | 160 "$p2p_dir/base/dtlstransportchannel.cc", |
161 "$p2p_dir/base/dtlstransportchannel.h", | 161 "$p2p_dir/base/dtlstransportchannel.h", |
162 "$p2p_dir/base/p2ptransport.cc", | 162 "$p2p_dir/base/p2ptransport.cc", |
163 "$p2p_dir/base/p2ptransport.h", | 163 "$p2p_dir/base/p2ptransport.h", |
164 "$p2p_dir/base/p2ptransportchannel.cc", | 164 "$p2p_dir/base/p2ptransportchannel.cc", |
165 "$p2p_dir/base/p2ptransportchannel.h", | 165 "$p2p_dir/base/p2ptransportchannel.h", |
166 "$p2p_dir/base/port.cc", | 166 "$p2p_dir/base/port.cc", |
167 "$p2p_dir/base/port.h", | 167 "$p2p_dir/base/port.h", |
168 "$p2p_dir/base/portallocator.cc", | 168 "$p2p_dir/base/portallocator.cc", |
169 "$p2p_dir/base/portallocator.h", | 169 "$p2p_dir/base/portallocator.h", |
170 "$p2p_dir/base/portallocatorsessionproxy.cc", | |
171 "$p2p_dir/base/portallocatorsessionproxy.h", | |
172 "$p2p_dir/base/portproxy.cc", | |
173 "$p2p_dir/base/portproxy.h", | |
174 "$p2p_dir/base/pseudotcp.cc", | 170 "$p2p_dir/base/pseudotcp.cc", |
175 "$p2p_dir/base/pseudotcp.h", | 171 "$p2p_dir/base/pseudotcp.h", |
176 "$p2p_dir/base/rawtransport.cc", | 172 "$p2p_dir/base/rawtransport.cc", |
177 "$p2p_dir/base/rawtransport.h", | 173 "$p2p_dir/base/rawtransport.h", |
178 "$p2p_dir/base/rawtransportchannel.cc", | 174 "$p2p_dir/base/rawtransportchannel.cc", |
179 "$p2p_dir/base/rawtransportchannel.h", | 175 "$p2p_dir/base/rawtransportchannel.h", |
180 "$p2p_dir/base/relayport.cc", | 176 "$p2p_dir/base/relayport.cc", |
181 "$p2p_dir/base/relayport.h", | 177 "$p2p_dir/base/relayport.h", |
182 "$p2p_dir/base/session.cc", | 178 "$p2p_dir/base/session.cc", |
183 "$p2p_dir/base/session.h", | 179 "$p2p_dir/base/session.h", |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 | 534 |
539 deps = [ | 535 deps = [ |
540 ":libjingle_webrtc_common", | 536 ":libjingle_webrtc_common", |
541 "//third_party/webrtc", | 537 "//third_party/webrtc", |
542 "//third_party/webrtc/system_wrappers", | 538 "//third_party/webrtc/system_wrappers", |
543 "//third_party/webrtc/voice_engine", | 539 "//third_party/webrtc/voice_engine", |
544 ] | 540 ] |
545 } | 541 } |
546 } # enable_webrtc | 542 } # enable_webrtc |
547 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. | 543 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. |
OLD | NEW |