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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 ] | 253 ] |
254 sources -= [ | 254 sources -= [ |
255 # Compiled as part of libjingle_p2p_constants. | 255 # Compiled as part of libjingle_p2p_constants. |
256 "$p2p_dir/base/constants.cc", | 256 "$p2p_dir/base/constants.cc", |
257 "$p2p_dir/base/constants.h", | 257 "$p2p_dir/base/constants.h", |
258 ] | 258 ] |
259 public_deps = [ | 259 public_deps = [ |
260 ":jingle_deps", | 260 ":jingle_deps", |
261 ] | 261 ] |
262 deps = [ | 262 deps = [ |
263 "//third_party/webrtc/base:webrtc_base", | 263 "//third_party/webrtc/base:rtc_base", |
264 ":libjingle_p2p_constants", | 264 ":libjingle_p2p_constants", |
265 ] | 265 ] |
266 | 266 |
267 # From libjingle_common.gypi's conditions list. | 267 # From libjingle_common.gypi's conditions list. |
268 if (is_win) { | 268 if (is_win) { |
269 cflags = [ | 269 cflags = [ |
270 "/wd4005", | 270 "/wd4005", |
271 "/wd4267", | 271 "/wd4267", |
272 ] | 272 ] |
273 } | 273 } |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 "source/talk/app/webrtc/java/src/org/webrtc/StatsReport.java", | 567 "source/talk/app/webrtc/java/src/org/webrtc/StatsReport.java", |
568 "source/talk/app/webrtc/java/src/org/webrtc/SessionDescription.java", | 568 "source/talk/app/webrtc/java/src/org/webrtc/SessionDescription.java", |
569 "source/talk/app/webrtc/java/src/org/webrtc/VideoCapturer.java", | 569 "source/talk/app/webrtc/java/src/org/webrtc/VideoCapturer.java", |
570 "source/talk/app/webrtc/java/src/org/webrtc/VideoRenderer.java", | 570 "source/talk/app/webrtc/java/src/org/webrtc/VideoRenderer.java", |
571 "source/talk/app/webrtc/java/src/org/webrtc/VideoSource.java", | 571 "source/talk/app/webrtc/java/src/org/webrtc/VideoSource.java", |
572 "source/talk/app/webrtc/java/src/org/webrtc/VideoTrack.java", | 572 "source/talk/app/webrtc/java/src/org/webrtc/VideoTrack.java", |
573 ] | 573 ] |
574 } | 574 } |
575 } # enable_webrtc | 575 } # enable_webrtc |
576 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. | 576 # TODO(GYP): Port libjingle.gyp's enable_webrtc condition block. |
OLD | NEW |