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("browser") { | 5 static_library("browser") { |
6 sources = [ | 6 sources = [ |
7 "content_settings_binary_value_map.cc", | 7 "content_settings_binary_value_map.cc", |
8 "content_settings_binary_value_map.h", | 8 "content_settings_binary_value_map.h", |
9 "content_settings_client.h", | 9 "content_settings_client.h", |
10 "content_settings_default_provider.cc", | 10 "content_settings_default_provider.cc", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 source_set("unit_tests") { | 59 source_set("unit_tests") { |
60 testonly = true | 60 testonly = true |
61 sources = [ | 61 sources = [ |
62 "content_settings_mock_provider.cc", | 62 "content_settings_mock_provider.cc", |
63 "content_settings_mock_provider.h", | 63 "content_settings_mock_provider.h", |
64 "content_settings_provider_unittest.cc", | 64 "content_settings_provider_unittest.cc", |
65 "content_settings_rule_unittest.cc", | 65 "content_settings_rule_unittest.cc", |
66 "content_settings_utils_unittest.cc", | 66 "content_settings_utils_unittest.cc", |
67 "cookie_settings_unittest.cc", | 67 "cookie_settings_unittest.cc", |
68 "plugins_field_trial_unittest.cc", | 68 "plugins_field_trial_unittest.cc", |
| 69 "website_settings_registry_unittest.cc", |
69 ] | 70 ] |
70 | 71 |
71 deps = [ | 72 deps = [ |
72 ":browser", | 73 ":browser", |
73 "//base", | 74 "//base", |
74 "//components/content_settings/core/common", | 75 "//components/content_settings/core/common", |
75 "//components/content_settings/core/test:test_support", | 76 "//components/content_settings/core/test:test_support", |
76 "//testing/gtest", | 77 "//testing/gtest", |
77 "//url", | 78 "//url", |
78 ] | 79 ] |
79 } | 80 } |
OLD | NEW |