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

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

Issue 2628883008: Add a supervised user setting to allow all cookies. (Closed)
Patch Set: . Created 3 years, 11 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//ppapi/features/features.gni") 6 import("//ppapi/features/features.gni")
7 7
8 static_library("browser") { 8 static_library("browser") {
9 sources = [ 9 sources = [
10 "content_settings_binary_value_map.cc",
11 "content_settings_binary_value_map.h",
12 "content_settings_default_provider.cc", 10 "content_settings_default_provider.cc",
13 "content_settings_default_provider.h", 11 "content_settings_default_provider.h",
14 "content_settings_details.cc", 12 "content_settings_details.cc",
15 "content_settings_details.h", 13 "content_settings_details.h",
14 "content_settings_global_value_map.cc",
15 "content_settings_global_value_map.h",
16 "content_settings_info.cc", 16 "content_settings_info.cc",
17 "content_settings_info.h", 17 "content_settings_info.h",
18 "content_settings_observable_provider.cc", 18 "content_settings_observable_provider.cc",
19 "content_settings_observable_provider.h", 19 "content_settings_observable_provider.h",
20 "content_settings_observer.h", 20 "content_settings_observer.h",
21 "content_settings_origin_identifier_value_map.cc", 21 "content_settings_origin_identifier_value_map.cc",
22 "content_settings_origin_identifier_value_map.h", 22 "content_settings_origin_identifier_value_map.h",
23 "content_settings_policy_provider.cc", 23 "content_settings_policy_provider.cc",
24 "content_settings_policy_provider.h", 24 "content_settings_policy_provider.h",
25 "content_settings_pref.cc", 25 "content_settings_pref.cc",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 "//components/content_settings/core/common", 84 "//components/content_settings/core/common",
85 "//components/content_settings/core/test:test_support", 85 "//components/content_settings/core/test:test_support",
86 "//components/pref_registry:pref_registry", 86 "//components/pref_registry:pref_registry",
87 "//components/prefs", 87 "//components/prefs",
88 "//components/sync_preferences:test_support", 88 "//components/sync_preferences:test_support",
89 "//extensions/features", 89 "//extensions/features",
90 "//testing/gtest", 90 "//testing/gtest",
91 "//url", 91 "//url",
92 ] 92 ]
93 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698