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/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 # From third_party/libjingle/libjingle.gyp's target_defaults. | 7 # From third_party/libjingle/libjingle.gyp's target_defaults. |
8 config("jingle_unexported_configs") { | 8 config("jingle_unexported_configs") { |
9 defines = [ | 9 defines = [ |
10 "EXPAT_RELATIVE_PATH", | 10 "EXPAT_RELATIVE_PATH", |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 ":libjingle_webrtc_common", | 243 ":libjingle_webrtc_common", |
244 ] | 244 ] |
245 } | 245 } |
246 | 246 |
247 source_set("libjingle_webrtc_common") { | 247 source_set("libjingle_webrtc_common") { |
248 sources = [ | 248 sources = [ |
249 "../webrtc/api/audiotrack.cc", | 249 "../webrtc/api/audiotrack.cc", |
250 "../webrtc/api/audiotrack.h", | 250 "../webrtc/api/audiotrack.h", |
251 "../webrtc/api/datachannel.cc", | 251 "../webrtc/api/datachannel.cc", |
252 "../webrtc/api/datachannel.h", | 252 "../webrtc/api/datachannel.h", |
253 "../webrtc/api/dtlsidentitystore.h", | |
254 "../webrtc/api/dtmfsender.cc", | 253 "../webrtc/api/dtmfsender.cc", |
255 "../webrtc/api/dtmfsender.h", | 254 "../webrtc/api/dtmfsender.h", |
256 "../webrtc/api/jsep.h", | 255 "../webrtc/api/jsep.h", |
257 "../webrtc/api/jsepicecandidate.cc", | 256 "../webrtc/api/jsepicecandidate.cc", |
258 "../webrtc/api/jsepicecandidate.h", | 257 "../webrtc/api/jsepicecandidate.h", |
259 "../webrtc/api/jsepsessiondescription.cc", | 258 "../webrtc/api/jsepsessiondescription.cc", |
260 "../webrtc/api/jsepsessiondescription.h", | 259 "../webrtc/api/jsepsessiondescription.h", |
261 "../webrtc/api/localaudiosource.cc", | 260 "../webrtc/api/localaudiosource.cc", |
262 "../webrtc/api/localaudiosource.h", | 261 "../webrtc/api/localaudiosource.h", |
263 "../webrtc/api/mediaconstraintsinterface.cc", | 262 "../webrtc/api/mediaconstraintsinterface.cc", |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 sources = [ | 403 sources = [ |
405 "$p2p_dir/stunprober/stunprober.cc", | 404 "$p2p_dir/stunprober/stunprober.cc", |
406 ] | 405 ] |
407 | 406 |
408 deps = [ | 407 deps = [ |
409 ":libjingle_webrtc_common", | 408 ":libjingle_webrtc_common", |
410 "//third_party/webrtc/base:rtc_base", | 409 "//third_party/webrtc/base:rtc_base", |
411 ] | 410 ] |
412 } | 411 } |
413 } # enable_webrtc | 412 } # enable_webrtc |
OLD | NEW |