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

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: gyp shuffle for ios 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
« no previous file with comments | « components/content_settings.gypi ('k') | components/content_settings/core/browser/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
45 "//components/plugins/common",
43 "//components/pref_registry:pref_registry", 46 "//components/pref_registry:pref_registry",
44 "//net", 47 "//net",
45 "//url", 48 "//url",
46 ] 49 ]
47 50
48 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 51 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
49 } 52 }
50 53
51 source_set("unit_tests") { 54 source_set("unit_tests") {
52 testonly = true 55 testonly = true
53 sources = [ 56 sources = [
54 "content_settings_mock_provider.cc", 57 "content_settings_mock_provider.cc",
55 "content_settings_mock_provider.h", 58 "content_settings_mock_provider.h",
56 "content_settings_provider_unittest.cc", 59 "content_settings_provider_unittest.cc",
57 "content_settings_rule_unittest.cc", 60 "content_settings_rule_unittest.cc",
58 "content_settings_utils_unittest.cc", 61 "content_settings_utils_unittest.cc",
62 "plugins_field_trial_unittest.cc",
59 ] 63 ]
60 64
61 deps = [ 65 deps = [
62 ":browser", 66 ":browser",
63 "//base", 67 "//base",
64 "//components/content_settings/core/common", 68 "//components/content_settings/core/common",
65 "//components/content_settings/core/test:test_support", 69 "//components/content_settings/core/test:test_support",
66 "//testing/gtest", 70 "//testing/gtest",
67 "//url", 71 "//url",
68 ] 72 ]
69 } 73 }
OLDNEW
« no previous file with comments | « components/content_settings.gypi ('k') | components/content_settings/core/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698