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("web_resource") { | 5 static_library("web_resource") { |
6 sources = [ | 6 sources = [ |
7 "eula_accepted_notifier.cc", | 7 "eula_accepted_notifier.cc", |
8 "eula_accepted_notifier.h", | 8 "eula_accepted_notifier.h", |
9 "resource_request_allowed_notifier.cc", | 9 "resource_request_allowed_notifier.cc", |
10 "resource_request_allowed_notifier.h", | 10 "resource_request_allowed_notifier.h", |
(...skipping 25 matching lines...) Expand all Loading... |
36 ":web_resource", | 36 ":web_resource", |
37 "//base", | 37 "//base", |
38 ] | 38 ] |
39 } | 39 } |
40 | 40 |
41 source_set("unit_tests") { | 41 source_set("unit_tests") { |
42 testonly = true | 42 testonly = true |
43 sources = [ | 43 sources = [ |
44 "eula_accepted_notifier_unittest.cc", | 44 "eula_accepted_notifier_unittest.cc", |
45 "resource_request_allowed_notifier_unittest.cc", | 45 "resource_request_allowed_notifier_unittest.cc", |
| 46 "web_resource_service_unittest.cc", |
46 ] | 47 ] |
47 | 48 |
48 deps = [ | 49 deps = [ |
49 ":test_support", | 50 ":test_support", |
50 ":web_resource", | 51 ":web_resource", |
51 "//base", | 52 "//base", |
52 "//components/prefs:test_support", | 53 "//components/prefs:test_support", |
53 "//components/version_info", | 54 "//components/version_info", |
54 "//net:test_support", | 55 "//net:test_support", |
55 "//testing/gtest", | 56 "//testing/gtest", |
56 "//third_party/icu", | 57 "//third_party/icu", |
57 ] | 58 ] |
58 } | 59 } |
OLD | NEW |