| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 static_library("test_support") { | 259 static_library("test_support") { |
| 260 testonly = true | 260 testonly = true |
| 261 | 261 |
| 262 sources = [ | 262 sources = [ |
| 263 "fake_authenticator.cc", | 263 "fake_authenticator.cc", |
| 264 "fake_authenticator.h", | 264 "fake_authenticator.h", |
| 265 "fake_connection_to_host.cc", | 265 "fake_connection_to_host.cc", |
| 266 "fake_connection_to_host.h", | 266 "fake_connection_to_host.h", |
| 267 "fake_datagram_socket.cc", | 267 "fake_datagram_socket.cc", |
| 268 "fake_datagram_socket.h", | 268 "fake_datagram_socket.h", |
| 269 "fake_process_stats_stub.cc", |
| 270 "fake_process_stats_stub.h", |
| 269 "fake_session.cc", | 271 "fake_session.cc", |
| 270 "fake_session.h", | 272 "fake_session.h", |
| 271 "fake_stream_socket.cc", | 273 "fake_stream_socket.cc", |
| 272 "fake_stream_socket.h", | 274 "fake_stream_socket.h", |
| 273 "fake_video_renderer.cc", | 275 "fake_video_renderer.cc", |
| 274 "fake_video_renderer.h", | 276 "fake_video_renderer.h", |
| 275 "protocol_mock_objects.cc", | 277 "protocol_mock_objects.cc", |
| 276 "protocol_mock_objects.h", | 278 "protocol_mock_objects.h", |
| 277 ] | 279 ] |
| 278 | 280 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 ] | 347 ] |
| 346 } | 348 } |
| 347 | 349 |
| 348 deps = [ | 350 deps = [ |
| 349 ":test_support", | 351 ":test_support", |
| 350 "//net:test_support", | 352 "//net:test_support", |
| 351 "//testing/gmock", | 353 "//testing/gmock", |
| 352 "//testing/gtest", | 354 "//testing/gtest", |
| 353 ] | 355 ] |
| 354 } | 356 } |
| OLD | NEW |