| 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 16 matching lines...) Expand all Loading... |
| 27 "content_settings_provider.h", | 27 "content_settings_provider.h", |
| 28 "content_settings_rule.cc", | 28 "content_settings_rule.cc", |
| 29 "content_settings_rule.h", | 29 "content_settings_rule.h", |
| 30 "content_settings_usages_state.cc", | 30 "content_settings_usages_state.cc", |
| 31 "content_settings_usages_state.h", | 31 "content_settings_usages_state.h", |
| 32 "content_settings_utils.cc", | 32 "content_settings_utils.cc", |
| 33 "content_settings_utils.h", | 33 "content_settings_utils.h", |
| 34 "host_content_settings_map.cc", | 34 "host_content_settings_map.cc", |
| 35 "host_content_settings_map.h", | 35 "host_content_settings_map.h", |
| 36 "local_shared_objects_counter.h", | 36 "local_shared_objects_counter.h", |
| 37 "plugins_field_trial.cc", |
| 38 "plugins_field_trial.h", |
| 37 ] | 39 ] |
| 38 | 40 |
| 39 deps = [ | 41 deps = [ |
| 40 "//base", | 42 "//base", |
| 41 "//base:prefs", | 43 "//base:prefs", |
| 42 "//components/content_settings/core/common", | 44 "//components/content_settings/core/common", |
| 45 "//components/plugins/common", |
| 43 "//components/pref_registry:pref_registry", | 46 "//components/pref_registry:pref_registry", |
| 44 "//net", | 47 "//net", |
| 45 "//url", | 48 "//url", |
| 46 ] | 49 ] |
| 47 | 50 |
| 48 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 51 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 49 } | 52 } |
| 50 | 53 |
| 51 source_set("unit_tests") { | 54 source_set("unit_tests") { |
| 52 testonly = true | 55 testonly = true |
| 53 sources = [ | 56 sources = [ |
| 54 "content_settings_mock_provider.cc", | 57 "content_settings_mock_provider.cc", |
| 55 "content_settings_mock_provider.h", | 58 "content_settings_mock_provider.h", |
| 56 "content_settings_provider_unittest.cc", | 59 "content_settings_provider_unittest.cc", |
| 57 "content_settings_rule_unittest.cc", | 60 "content_settings_rule_unittest.cc", |
| 58 "content_settings_utils_unittest.cc", | 61 "content_settings_utils_unittest.cc", |
| 62 "plugins_field_trial_unittest.cc", |
| 59 ] | 63 ] |
| 60 | 64 |
| 61 deps = [ | 65 deps = [ |
| 62 ":browser", | 66 ":browser", |
| 63 "//base", | 67 "//base", |
| 64 "//components/content_settings/core/common", | 68 "//components/content_settings/core/common", |
| 65 "//components/content_settings/core/test:test_support", | 69 "//components/content_settings/core/test:test_support", |
| 66 "//testing/gtest", | 70 "//testing/gtest", |
| 67 "//url", | 71 "//url", |
| 68 ] | 72 ] |
| 69 } | 73 } |
| OLD | NEW |