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 static_library("protocol") { | 5 static_library("protocol") { |
6 sources = [ | 6 sources = [ |
7 "audio_reader.cc", | 7 "audio_reader.cc", |
8 "audio_reader.h", | 8 "audio_reader.h", |
9 "audio_stub.h", | 9 "audio_stub.h", |
10 "audio_writer.cc", | 10 "audio_writer.cc", |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 "../signaling/log_to_server.cc", | 129 "../signaling/log_to_server.cc", |
130 "../signaling/log_to_server.h", | 130 "../signaling/log_to_server.h", |
131 "../signaling/server_log_entry.cc", | 131 "../signaling/server_log_entry.cc", |
132 "../signaling/server_log_entry.h", | 132 "../signaling/server_log_entry.h", |
133 "../signaling/signal_strategy.h", | 133 "../signaling/signal_strategy.h", |
134 "../signaling/xmpp_signal_strategy.cc", | 134 "../signaling/xmpp_signal_strategy.cc", |
135 "../signaling/xmpp_signal_strategy.h", | 135 "../signaling/xmpp_signal_strategy.h", |
136 ] | 136 ] |
137 | 137 |
138 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 138 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
139 # TODO(GYP) Remove when WebRTC/jingle is converted. | |
140 configs += [ | |
141 "//content:webrtc_stub_config", | |
142 "//content:libjingle_stub_config", | |
143 ] | |
144 | 139 |
145 deps = [ | 140 deps = [ |
146 "//base", | 141 "//base", |
147 "//crypto", | 142 "//crypto", |
| 143 "//jingle:jingle_glue", |
| 144 "//jingle:notifier", |
148 "//net", | 145 "//net", |
149 "//remoting/base", | 146 "//remoting/base", |
150 #'../jingle/jingle.gyp:jingle_glue', TODO(GYP) | 147 "//third_party/libjingle", |
151 #'../jingle/jingle.gyp:notifier', TODO(GYP) | |
152 #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP) | |
153 ] | 148 ] |
154 | 149 |
155 forward_dependent_configs_from = [ | 150 forward_dependent_configs_from = [ |
156 #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP) | 151 "//third_party/libjingle", |
157 ] | 152 ] |
158 # TODO(GYP) Remove when jingle is converted. | |
159 direct_dependent_configs = [ "//content:libjingle_stub_config" ] | |
160 } | 153 } |
OLD | NEW |