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

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

Issue 1084123002: Make DETECT_IMPORTANT_CONTENT the default Plugins content setting based (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn fixes Created 5 years, 8 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_binary_value_map.cc", 7 "content_settings_binary_value_map.cc",
8 "content_settings_binary_value_map.h", 8 "content_settings_binary_value_map.h",
9 "content_settings_client.h", 9 "content_settings_client.h",
10 "content_settings_default_provider.cc", 10 "content_settings_default_provider.cc",
(...skipping 16 matching lines...) Expand all
27 "content_settings_provider.h", 27 "content_settings_provider.h",
28 "content_settings_rule.cc", 28 "content_settings_rule.cc",
29 "content_settings_rule.h", 29 "content_settings_rule.h",
30 "content_settings_usages_state.cc", 30 "content_settings_usages_state.cc",
31 "content_settings_usages_state.h", 31 "content_settings_usages_state.h",
32 "content_settings_utils.cc", 32 "content_settings_utils.cc",
33 "content_settings_utils.h", 33 "content_settings_utils.h",
34 "host_content_settings_map.cc", 34 "host_content_settings_map.cc",
35 "host_content_settings_map.h", 35 "host_content_settings_map.h",
36 "local_shared_objects_counter.h", 36 "local_shared_objects_counter.h",
37 "plugins_field_trial.cc",
38 "plugins_field_trial.h",
37 ] 39 ]
38 40
39 deps = [ 41 deps = [
40 "//base", 42 "//base",
41 "//base:prefs", 43 "//base:prefs",
42 "//components/content_settings/core/common", 44 "//components/content_settings/core/common",
43 "//components/pref_registry:pref_registry", 45 "//components/pref_registry:pref_registry",
44 "//net", 46 "//net",
45 "//url", 47 "//url",
46 ] 48 ]
47 49
48 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 50 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
49 } 51 }
50 52
51 source_set("unit_tests") { 53 source_set("unit_tests") {
52 testonly = true 54 testonly = true
53 sources = [ 55 sources = [
54 "content_settings_mock_provider.cc", 56 "content_settings_mock_provider.cc",
55 "content_settings_mock_provider.h", 57 "content_settings_mock_provider.h",
56 "content_settings_provider_unittest.cc", 58 "content_settings_provider_unittest.cc",
57 "content_settings_rule_unittest.cc", 59 "content_settings_rule_unittest.cc",
58 "content_settings_utils_unittest.cc", 60 "content_settings_utils_unittest.cc",
61 "plugins_field_trial_unittest.cc",
59 ] 62 ]
60 63
61 deps = [ 64 deps = [
62 ":browser", 65 ":browser",
63 "//base", 66 "//base",
64 "//components/content_settings/core/common", 67 "//components/content_settings/core/common",
65 "//components/content_settings/core/test:test_support", 68 "//components/content_settings/core/test:test_support",
66 "//testing/gtest", 69 "//testing/gtest",
67 "//url", 70 "//url",
68 ] 71 ]
69 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698