| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 "$p2p_dir/base/stunport.h", | 183 "$p2p_dir/base/stunport.h", |
| 184 "$p2p_dir/base/stunrequest.cc", | 184 "$p2p_dir/base/stunrequest.cc", |
| 185 "$p2p_dir/base/stunrequest.h", | 185 "$p2p_dir/base/stunrequest.h", |
| 186 "$p2p_dir/base/tcpport.cc", | 186 "$p2p_dir/base/tcpport.cc", |
| 187 "$p2p_dir/base/tcpport.h", | 187 "$p2p_dir/base/tcpport.h", |
| 188 "$p2p_dir/base/transport.cc", | 188 "$p2p_dir/base/transport.cc", |
| 189 "$p2p_dir/base/transport.h", | 189 "$p2p_dir/base/transport.h", |
| 190 "$p2p_dir/base/transportchannel.cc", | 190 "$p2p_dir/base/transportchannel.cc", |
| 191 "$p2p_dir/base/transportchannel.h", | 191 "$p2p_dir/base/transportchannel.h", |
| 192 "$p2p_dir/base/transportchannelimpl.h", | 192 "$p2p_dir/base/transportchannelimpl.h", |
| 193 "$p2p_dir/base/transportchannelproxy.cc", | 193 "$p2p_dir/base/transportcontroller.cc", |
| 194 "$p2p_dir/base/transportchannelproxy.h", | 194 "$p2p_dir/base/transportcontroller.h", |
| 195 "$p2p_dir/base/transportdescription.cc", | 195 "$p2p_dir/base/transportdescription.cc", |
| 196 "$p2p_dir/base/transportdescription.h", | 196 "$p2p_dir/base/transportdescription.h", |
| 197 "$p2p_dir/base/transportdescriptionfactory.cc", | 197 "$p2p_dir/base/transportdescriptionfactory.cc", |
| 198 "$p2p_dir/base/transportdescriptionfactory.h", | 198 "$p2p_dir/base/transportdescriptionfactory.h", |
| 199 "$p2p_dir/base/turnport.cc", | 199 "$p2p_dir/base/turnport.cc", |
| 200 "$p2p_dir/base/turnport.h", | 200 "$p2p_dir/base/turnport.h", |
| 201 "$p2p_dir/client/basicportallocator.cc", | 201 "$p2p_dir/client/basicportallocator.cc", |
| 202 "$p2p_dir/client/basicportallocator.h", | 202 "$p2p_dir/client/basicportallocator.h", |
| 203 "$p2p_dir/client/httpportallocator.cc", | 203 "$p2p_dir/client/httpportallocator.cc", |
| 204 "$p2p_dir/client/httpportallocator.h", | 204 "$p2p_dir/client/httpportallocator.h", |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 "$p2p_dir/stunprober/stunprober.cc", | 508 "$p2p_dir/stunprober/stunprober.cc", |
| 509 ] | 509 ] |
| 510 | 510 |
| 511 deps = [ | 511 deps = [ |
| 512 "//third_party/webrtc/base:rtc_base", | 512 "//third_party/webrtc/base:rtc_base", |
| 513 ":libjingle_webrtc_common", | 513 ":libjingle_webrtc_common", |
| 514 ] | 514 ] |
| 515 } | 515 } |
| 516 } # enable_webrtc | 516 } # enable_webrtc |
| 517 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. | 517 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. |
| OLD | NEW |