OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 source_set("net") { | 7 source_set("net") { |
8 sources = [ | 8 sources = [ |
9 "connectivity_checker.cc", | 9 "connectivity_checker.cc", |
10 "connectivity_checker.h", | 10 "connectivity_checker.h", |
(...skipping 13 matching lines...) Expand all Loading... |
24 "network_change_notifier_factory_cast.h", | 24 "network_change_notifier_factory_cast.h", |
25 ] | 25 ] |
26 } | 26 } |
27 | 27 |
28 deps = [ | 28 deps = [ |
29 "//base", | 29 "//base", |
30 "//chromecast:chromecast_features", | 30 "//chromecast:chromecast_features", |
31 "//chromecast/base:cast_sys_info", | 31 "//chromecast/base:cast_sys_info", |
32 "//chromecast/base/metrics", | 32 "//chromecast/base/metrics", |
33 "//chromecast/public", | 33 "//chromecast/public", |
| 34 "//components/proxy_config", |
34 "//net", | 35 "//net", |
35 ] | 36 ] |
36 } | 37 } |
37 | 38 |
38 source_set("test_support") { | 39 source_set("test_support") { |
39 testonly = true | 40 testonly = true |
40 | 41 |
41 sources = [ | 42 sources = [ |
42 "fake_stream_socket.cc", | 43 "fake_stream_socket.cc", |
43 "fake_stream_socket.h", | 44 "fake_stream_socket.h", |
(...skipping 17 matching lines...) Expand all Loading... |
61 ] | 62 ] |
62 | 63 |
63 deps = [ | 64 deps = [ |
64 ":test_support", | 65 ":test_support", |
65 "//base", | 66 "//base", |
66 "//base/test:run_all_unittests", | 67 "//base/test:run_all_unittests", |
67 "//net", | 68 "//net", |
68 "//testing/gtest", | 69 "//testing/gtest", |
69 ] | 70 ] |
70 } | 71 } |
OLD | NEW |