| 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 30 matching lines...) Expand all Loading... |
| 41 "website_settings_registry.cc", | 41 "website_settings_registry.cc", |
| 42 "website_settings_registry.h", | 42 "website_settings_registry.h", |
| 43 ] | 43 ] |
| 44 | 44 |
| 45 deps = [ | 45 deps = [ |
| 46 "//base", | 46 "//base", |
| 47 "//base:prefs", | 47 "//base:prefs", |
| 48 "//components/content_settings/core/common", | 48 "//components/content_settings/core/common", |
| 49 "//components/plugins/common", | 49 "//components/plugins/common", |
| 50 "//components/pref_registry:pref_registry", | 50 "//components/pref_registry:pref_registry", |
| 51 "//components/url_formatter", | |
| 52 "//net", | 51 "//net", |
| 53 "//url", | 52 "//url", |
| 54 ] | 53 ] |
| 55 | 54 |
| 56 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 55 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 57 } | 56 } |
| 58 | 57 |
| 59 source_set("unit_tests") { | 58 source_set("unit_tests") { |
| 60 testonly = true | 59 testonly = true |
| 61 sources = [ | 60 sources = [ |
| 62 "content_settings_mock_provider.cc", | 61 "content_settings_mock_provider.cc", |
| 63 "content_settings_mock_provider.h", | 62 "content_settings_mock_provider.h", |
| 64 "content_settings_provider_unittest.cc", | 63 "content_settings_provider_unittest.cc", |
| 65 "content_settings_rule_unittest.cc", | 64 "content_settings_rule_unittest.cc", |
| 66 "content_settings_utils_unittest.cc", | 65 "content_settings_utils_unittest.cc", |
| 67 "cookie_settings_unittest.cc", | 66 "cookie_settings_unittest.cc", |
| 68 "plugins_field_trial_unittest.cc", | 67 "plugins_field_trial_unittest.cc", |
| 69 ] | 68 ] |
| 70 | 69 |
| 71 deps = [ | 70 deps = [ |
| 72 ":browser", | 71 ":browser", |
| 73 "//base", | 72 "//base", |
| 74 "//components/content_settings/core/common", | 73 "//components/content_settings/core/common", |
| 75 "//components/content_settings/core/test:test_support", | 74 "//components/content_settings/core/test:test_support", |
| 76 "//testing/gtest", | 75 "//testing/gtest", |
| 77 "//url", | 76 "//url", |
| 78 ] | 77 ] |
| 79 } | 78 } |
| OLD | NEW |