| 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 import("//remoting/remoting_options.gni") | 6 import("//remoting/remoting_options.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 | 8 |
| 9 static_library("protocol") { | 9 static_library("protocol") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 ] | 175 ] |
| 176 | 176 |
| 177 configs += [ | 177 configs += [ |
| 178 "//build/config:precompiled_headers", | 178 "//build/config:precompiled_headers", |
| 179 "//build/config/compiler:no_size_t_to_int_warning", | 179 "//build/config/compiler:no_size_t_to_int_warning", |
| 180 "//build/config/compiler:wexit_time_destructors", | 180 "//build/config/compiler:wexit_time_destructors", |
| 181 ] | 181 ] |
| 182 | 182 |
| 183 public_deps = [ | 183 public_deps = [ |
| 184 "//remoting/proto", | 184 "//remoting/proto", |
| 185 "//third_party/libjingle", | 185 "//third_party/webrtc_overrides", |
| 186 ] | 186 ] |
| 187 deps = [ | 187 deps = [ |
| 188 "//base", | 188 "//base", |
| 189 "//crypto", | 189 "//crypto", |
| 190 "//jingle:jingle_glue", | 190 "//jingle:jingle_glue", |
| 191 "//net", | 191 "//net", |
| 192 "//remoting/base", | 192 "//remoting/base", |
| 193 "//remoting/codec:decoder", | 193 "//remoting/codec:decoder", |
| 194 "//remoting/signaling", | 194 "//remoting/signaling", |
| 195 "//third_party/boringssl", | 195 "//third_party/boringssl", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 "webrtc_connection_to_client.cc", | 229 "webrtc_connection_to_client.cc", |
| 230 "webrtc_connection_to_client.h", | 230 "webrtc_connection_to_client.h", |
| 231 "webrtc_frame_scheduler.h", | 231 "webrtc_frame_scheduler.h", |
| 232 "webrtc_frame_scheduler_simple.cc", | 232 "webrtc_frame_scheduler_simple.cc", |
| 233 "webrtc_frame_scheduler_simple.h", | 233 "webrtc_frame_scheduler_simple.h", |
| 234 "webrtc_video_stream.cc", | 234 "webrtc_video_stream.cc", |
| 235 "webrtc_video_stream.h", | 235 "webrtc_video_stream.h", |
| 236 ] | 236 ] |
| 237 } | 237 } |
| 238 | 238 |
| 239 deps += [ "//third_party/libjingle/webrtc:libjingle_webrtc" ] | 239 deps += [ "//third_party/webrtc_overrides:init_webrtc" ] |
| 240 } | 240 } |
| 241 | 241 |
| 242 if (enable_remoting_host) { | 242 if (enable_remoting_host) { |
| 243 sources += [ | 243 sources += [ |
| 244 "audio_pump.cc", | 244 "audio_pump.cc", |
| 245 "audio_pump.h", | 245 "audio_pump.h", |
| 246 "audio_writer.cc", | 246 "audio_writer.cc", |
| 247 "audio_writer.h", | 247 "audio_writer.h", |
| 248 "capture_scheduler.cc", | 248 "capture_scheduler.cc", |
| 249 "capture_scheduler.h", | 249 "capture_scheduler.h", |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 ] | 345 ] |
| 346 } | 346 } |
| 347 | 347 |
| 348 deps = [ | 348 deps = [ |
| 349 ":test_support", | 349 ":test_support", |
| 350 "//net:test_support", | 350 "//net:test_support", |
| 351 "//testing/gmock", | 351 "//testing/gmock", |
| 352 "//testing/gtest", | 352 "//testing/gtest", |
| 353 ] | 353 ] |
| 354 } | 354 } |
| OLD | NEW |