| 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 config("jingle_unexported_configs") { | 7 config("jingle_unexported_configs") { |
| 8 include_dirs = [ | 8 include_dirs = [ |
| 9 "../../third_party/webrtc_overrides", | 9 "../../third_party/webrtc_overrides", |
| 10 "../../testing/gtest/include", | 10 "../../testing/gtest/include", |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 ] | 106 ] |
| 107 public_configs = [ | 107 public_configs = [ |
| 108 ":jingle_public_configs", | 108 ":jingle_public_configs", |
| 109 "//third_party/webrtc:common_inherited_config", | 109 "//third_party/webrtc:common_inherited_config", |
| 110 ] | 110 ] |
| 111 | 111 |
| 112 deps = [ | 112 deps = [ |
| 113 ":libjingle", | 113 ":libjingle", |
| 114 "//third_party/libsrtp", | 114 "//third_party/libsrtp", |
| 115 "//third_party/usrsctp", | 115 "//third_party/usrsctp", |
| 116 "//third_party/webrtc", | |
| 117 "//third_party/webrtc/api:libjingle_peerconnection", | 116 "//third_party/webrtc/api:libjingle_peerconnection", |
| 118 "//third_party/webrtc/media:rtc_media", | 117 "//third_party/webrtc/media:rtc_media", |
| 119 "//third_party/webrtc/modules/media_file", | 118 "//third_party/webrtc/modules/media_file", |
| 120 "//third_party/webrtc/modules/video_capture", | 119 "//third_party/webrtc/modules/video_capture", |
| 121 "//third_party/webrtc/pc:rtc_pc", | 120 "//third_party/webrtc/pc:rtc_pc", |
| 122 "//third_party/webrtc/system_wrappers", | 121 "//third_party/webrtc/system_wrappers", |
| 123 "//third_party/webrtc/voice_engine", | 122 "//third_party/webrtc/voice_engine", |
| 124 ] | 123 ] |
| 125 } | 124 } |
| 126 | 125 |
| 127 static_library("libstunprober") { | 126 static_library("libstunprober") { |
| 128 p2p_dir = "../webrtc/p2p" | 127 p2p_dir = "../webrtc/p2p" |
| 129 sources = [ | 128 sources = [ |
| 130 "$p2p_dir/stunprober/stunprober.cc", | 129 "$p2p_dir/stunprober/stunprober.cc", |
| 131 ] | 130 ] |
| 132 | 131 |
| 133 deps = [ | 132 deps = [ |
| 134 ":libjingle_webrtc_common", | 133 ":libjingle_webrtc_common", |
| 135 "//third_party/webrtc/base:rtc_base", | 134 "//third_party/webrtc/base:rtc_base", |
| 136 ] | 135 ] |
| 137 } | 136 } |
| 138 } # enable_webrtc | 137 } # enable_webrtc |
| OLD | NEW |