| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 "../signaling/log_to_server.h", | 132 "../signaling/log_to_server.h", |
| 133 "../signaling/server_log_entry.cc", | 133 "../signaling/server_log_entry.cc", |
| 134 "../signaling/server_log_entry.h", | 134 "../signaling/server_log_entry.h", |
| 135 "../signaling/signal_strategy.h", | 135 "../signaling/signal_strategy.h", |
| 136 "../signaling/xmpp_signal_strategy.cc", | 136 "../signaling/xmpp_signal_strategy.cc", |
| 137 "../signaling/xmpp_signal_strategy.h", | 137 "../signaling/xmpp_signal_strategy.h", |
| 138 ] | 138 ] |
| 139 | 139 |
| 140 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 140 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 141 | 141 |
| 142 public_deps = [ |
| 143 "//third_party/libjingle", |
| 144 ] |
| 142 deps = [ | 145 deps = [ |
| 143 "//base", | 146 "//base", |
| 144 "//crypto", | 147 "//crypto", |
| 145 "//jingle:jingle_glue", | 148 "//jingle:jingle_glue", |
| 146 "//jingle:notifier", | 149 "//jingle:notifier", |
| 147 "//net", | 150 "//net", |
| 148 "//remoting/base", | 151 "//remoting/base", |
| 149 "//third_party/libjingle", | |
| 150 ] | |
| 151 | |
| 152 forward_dependent_configs_from = [ | |
| 153 "//third_party/libjingle", | |
| 154 ] | 152 ] |
| 155 } | 153 } |
| OLD | NEW |