Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: components/content_settings/core/browser/BUILD.gn

Issue 902833003: Add a HostContentSettingsMap layer for Supervised Users. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_client.h", 7 "content_settings_client.h",
8 "content_settings_default_provider.cc", 8 "content_settings_default_provider.cc",
9 "content_settings_default_provider.h", 9 "content_settings_default_provider.h",
10 "content_settings_details.cc", 10 "content_settings_details.cc",
11 "content_settings_details.h", 11 "content_settings_details.h",
12 "content_settings_binary_value_map.cc",
13 "content_settings_binary_value_map.h",
12 "content_settings_observable_provider.cc", 14 "content_settings_observable_provider.cc",
13 "content_settings_observable_provider.h", 15 "content_settings_observable_provider.h",
14 "content_settings_observer.h", 16 "content_settings_observer.h",
17 "content_settings_origin_identifier_value_map.cc",
18 "content_settings_origin_identifier_value_map.h",
15 "content_settings_override_provider.cc", 19 "content_settings_override_provider.cc",
16 "content_settings_override_provider.h", 20 "content_settings_override_provider.h",
17 "content_settings_policy_provider.cc", 21 "content_settings_policy_provider.cc",
18 "content_settings_policy_provider.h", 22 "content_settings_policy_provider.h",
19 "content_settings_pref_provider.cc", 23 "content_settings_pref_provider.cc",
20 "content_settings_pref_provider.h", 24 "content_settings_pref_provider.h",
21 "content_settings_provider.h", 25 "content_settings_provider.h",
22 "content_settings_origin_identifier_value_map.cc", 26 "content_settings_supervised_provider.cc",
23 "content_settings_origin_identifier_value_map.h", 27 "content_settings_supervised_provider.h",
24 "content_settings_rule.cc", 28 "content_settings_rule.cc",
25 "content_settings_rule.h", 29 "content_settings_rule.h",
26 "content_settings_usages_state.cc", 30 "content_settings_usages_state.cc",
27 "content_settings_usages_state.h", 31 "content_settings_usages_state.h",
28 "content_settings_utils.cc", 32 "content_settings_utils.cc",
29 "content_settings_utils.h", 33 "content_settings_utils.h",
30 "local_shared_objects_counter.h", 34 "local_shared_objects_counter.h",
31 "host_content_settings_map.cc", 35 "host_content_settings_map.cc",
32 "host_content_settings_map.h", 36 "host_content_settings_map.h",
33 ] 37 ]
(...skipping 20 matching lines...) Expand all
54 58
55 deps = [ 59 deps = [
56 ":browser", 60 ":browser",
57 "//base", 61 "//base",
58 "//components/content_settings/core/common", 62 "//components/content_settings/core/common",
59 "//components/content_settings/core/test:test_support", 63 "//components/content_settings/core/test:test_support",
60 "//testing/gtest", 64 "//testing/gtest",
61 "//url", 65 "//url",
62 ] 66 ]
63 } 67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698