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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 static_library("browser") { | 7 static_library("browser") { |
8 sources = [ | 8 sources = [ |
9 "content_settings_binary_value_map.cc", | 9 "content_settings_binary_value_map.cc", |
10 "content_settings_binary_value_map.h", | 10 "content_settings_binary_value_map.h", |
11 "content_settings_client.h", | |
12 "content_settings_default_provider.cc", | 11 "content_settings_default_provider.cc", |
13 "content_settings_default_provider.h", | 12 "content_settings_default_provider.h", |
14 "content_settings_details.cc", | 13 "content_settings_details.cc", |
15 "content_settings_details.h", | 14 "content_settings_details.h", |
16 "content_settings_info.cc", | 15 "content_settings_info.cc", |
17 "content_settings_info.h", | 16 "content_settings_info.h", |
18 "content_settings_observable_provider.cc", | 17 "content_settings_observable_provider.cc", |
19 "content_settings_observable_provider.h", | 18 "content_settings_observable_provider.h", |
20 "content_settings_observer.h", | 19 "content_settings_observer.h", |
21 "content_settings_origin_identifier_value_map.cc", | 20 "content_settings_origin_identifier_value_map.cc", |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 "//base", | 83 "//base", |
85 "//base/test:test_support", | 84 "//base/test:test_support", |
86 "//components/content_settings/core/common", | 85 "//components/content_settings/core/common", |
87 "//components/content_settings/core/test:test_support", | 86 "//components/content_settings/core/test:test_support", |
88 "//components/pref_registry:test_support", | 87 "//components/pref_registry:test_support", |
89 "//components/prefs", | 88 "//components/prefs", |
90 "//testing/gtest", | 89 "//testing/gtest", |
91 "//url", | 90 "//url", |
92 ] | 91 ] |
93 } | 92 } |
OLD | NEW |