| 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", |
| 8 "content_settings_binary_value_map.h", |
| 7 "content_settings_client.h", | 9 "content_settings_client.h", |
| 8 "content_settings_default_provider.cc", | 10 "content_settings_default_provider.cc", |
| 9 "content_settings_default_provider.h", | 11 "content_settings_default_provider.h", |
| 10 "content_settings_details.cc", | 12 "content_settings_details.cc", |
| 11 "content_settings_details.h", | 13 "content_settings_details.h", |
| 12 "content_settings_binary_value_map.cc", | |
| 13 "content_settings_binary_value_map.h", | |
| 14 "content_settings_observable_provider.cc", | 14 "content_settings_observable_provider.cc", |
| 15 "content_settings_observable_provider.h", | 15 "content_settings_observable_provider.h", |
| 16 "content_settings_observer.h", | 16 "content_settings_observer.h", |
| 17 "content_settings_origin_identifier_value_map.cc", | 17 "content_settings_origin_identifier_value_map.cc", |
| 18 "content_settings_origin_identifier_value_map.h", | 18 "content_settings_origin_identifier_value_map.h", |
| 19 "content_settings_override_provider.cc", | 19 "content_settings_override_provider.cc", |
| 20 "content_settings_override_provider.h", | 20 "content_settings_override_provider.h", |
| 21 "content_settings_policy_provider.cc", | 21 "content_settings_policy_provider.cc", |
| 22 "content_settings_policy_provider.h", | 22 "content_settings_policy_provider.h", |
| 23 "content_settings_pref.cc", |
| 24 "content_settings_pref.h", |
| 23 "content_settings_pref_provider.cc", | 25 "content_settings_pref_provider.cc", |
| 24 "content_settings_pref_provider.h", | 26 "content_settings_pref_provider.h", |
| 25 "content_settings_provider.h", | 27 "content_settings_provider.h", |
| 26 "content_settings_rule.cc", | 28 "content_settings_rule.cc", |
| 27 "content_settings_rule.h", | 29 "content_settings_rule.h", |
| 28 "content_settings_usages_state.cc", | 30 "content_settings_usages_state.cc", |
| 29 "content_settings_usages_state.h", | 31 "content_settings_usages_state.h", |
| 30 "content_settings_utils.cc", | 32 "content_settings_utils.cc", |
| 31 "content_settings_utils.h", | 33 "content_settings_utils.h", |
| 32 "host_content_settings_map.cc", | 34 "host_content_settings_map.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 58 | 60 |
| 59 deps = [ | 61 deps = [ |
| 60 ":browser", | 62 ":browser", |
| 61 "//base", | 63 "//base", |
| 62 "//components/content_settings/core/common", | 64 "//components/content_settings/core/common", |
| 63 "//components/content_settings/core/test:test_support", | 65 "//components/content_settings/core/test:test_support", |
| 64 "//testing/gtest", | 66 "//testing/gtest", |
| 65 "//url", | 67 "//url", |
| 66 ] | 68 ] |
| 67 } | 69 } |
| OLD | NEW |