OLD | NEW |
---|---|
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("data_source") { | 5 source_set("data_source") { |
6 sources = [ | 6 sources = [ |
7 "physical_web_data_source.cc", | 7 "physical_web_data_source.cc", |
8 "physical_web_data_source.h", | 8 "physical_web_data_source.h", |
9 "physical_web_data_source_impl.cc", | 9 "physical_web_data_source_impl.cc", |
10 "physical_web_data_source_impl.h", | 10 "physical_web_data_source_impl.h", |
11 "physical_web_listener.h", | 11 "physical_web_listener.h", |
12 ] | 12 ] |
13 | 13 |
14 deps = [ | 14 deps = [ |
15 "//base", | 15 "//base", |
16 "//url", | |
nyquist
2017/01/05 07:42:28
This deps will also be required by packages that d
cco3
2017/01/05 23:52:56
Done.
| |
16 ] | 17 ] |
17 } | 18 } |
18 | 19 |
19 source_set("test_support") { | 20 source_set("test_support") { |
20 testonly = true | 21 testonly = true |
21 sources = [ | 22 sources = [ |
22 "fake_physical_web_data_source.cc", | 23 "fake_physical_web_data_source.cc", |
23 "fake_physical_web_data_source.h", | 24 "fake_physical_web_data_source.h", |
24 ] | 25 ] |
25 deps = [ | 26 deps = [ |
26 ":data_source", | 27 ":data_source", |
27 "//base", | 28 "//base", |
28 "//url", | 29 "//url", |
29 ] | 30 ] |
30 } | 31 } |
31 | 32 |
32 source_set("unit_tests") { | 33 source_set("unit_tests") { |
33 testonly = true | 34 testonly = true |
34 sources = [ | 35 sources = [ |
35 "physical_web_data_source_impl_unittest.cc", | 36 "physical_web_data_source_impl_unittest.cc", |
36 ] | 37 ] |
37 | 38 |
38 deps = [ | 39 deps = [ |
39 ":data_source", | 40 ":data_source", |
40 "//base", | 41 "//base", |
41 "//testing/gtest", | 42 "//testing/gtest", |
42 "//url", | 43 "//url", |
43 ] | 44 ] |
44 } | 45 } |
OLD | NEW |