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

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

Issue 1895993003: Add migration code to change existing domain scoped content settings to be origin scoped (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove logs and format Created 4 years, 6 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 6
7 source_set("browser") { 7 source_set("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",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 "plugins_field_trial.h", 52 "plugins_field_trial.h",
53 ] 53 ]
54 } 54 }
55 55
56 deps = [ 56 deps = [
57 "//base", 57 "//base",
58 "//components/content_settings/core/common", 58 "//components/content_settings/core/common",
59 "//components/keyed_service/core", 59 "//components/keyed_service/core",
60 "//components/pref_registry:pref_registry", 60 "//components/pref_registry:pref_registry",
61 "//components/prefs", 61 "//components/prefs",
62 "//components/syncable_prefs",
62 "//components/url_formatter", 63 "//components/url_formatter",
63 "//net", 64 "//net",
64 "//url", 65 "//url",
65 ] 66 ]
66 67
67 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 68 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
68 } 69 }
69 70
70 source_set("unit_tests") { 71 source_set("unit_tests") {
71 testonly = true 72 testonly = true
(...skipping 16 matching lines...) Expand all
88 "//base", 89 "//base",
89 "//base/test:test_support", 90 "//base/test:test_support",
90 "//components/content_settings/core/common", 91 "//components/content_settings/core/common",
91 "//components/content_settings/core/test:test_support", 92 "//components/content_settings/core/test:test_support",
92 "//components/pref_registry:test_support", 93 "//components/pref_registry:test_support",
93 "//components/prefs", 94 "//components/prefs",
94 "//testing/gtest", 95 "//testing/gtest",
95 "//url", 96 "//url",
96 ] 97 ]
97 } 98 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698