| 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_details.cc", | 7 "content_settings_details.cc", |
| 8 "content_settings_details.h", | 8 "content_settings_details.h", |
| 9 "content_settings_observer.h", | 9 "content_settings_observer.h", |
| 10 "content_settings_provider.h", | 10 "content_settings_provider.h", |
| 11 "content_settings_observable_provider.cc", | 11 "content_settings_observable_provider.cc", |
| 12 "content_settings_observable_provider.h", | 12 "content_settings_observable_provider.h", |
| 13 "content_settings_origin_identifier_value_map.cc", | 13 "content_settings_origin_identifier_value_map.cc", |
| 14 "content_settings_origin_identifier_value_map.h", | 14 "content_settings_origin_identifier_value_map.h", |
| 15 "content_settings_rule.cc", | 15 "content_settings_rule.cc", |
| 16 "content_settings_rule.h", | 16 "content_settings_rule.h", |
| 17 "local_shared_objects_counter.h", |
| 17 ] | 18 ] |
| 18 | 19 |
| 19 deps = [ | 20 deps = [ |
| 20 "//base", | 21 "//base", |
| 21 "//components/content_settings/core/common", | 22 "//components/content_settings/core/common", |
| 22 ] | 23 ] |
| 23 } | 24 } |
| 24 | 25 |
| 25 source_set("unit_tests") { | 26 source_set("unit_tests") { |
| 26 testonly = true | 27 testonly = true |
| 27 sources = [ | 28 sources = [ |
| 28 "content_settings_rule_unittest.cc", | 29 "content_settings_rule_unittest.cc", |
| 29 ] | 30 ] |
| 30 | 31 |
| 31 deps = [ | 32 deps = [ |
| 32 ":browser", | 33 ":browser", |
| 33 "//testing/gtest", | 34 "//testing/gtest", |
| 34 ] | 35 ] |
| 35 } | 36 } |
| OLD | NEW |