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

Side by Side Diff: components/content_settings/core/common/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: bauerb@ review 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("common") { 5 static_library("common") {
6 sources = [ 6 sources = [
7 "content_settings.cc", 7 "content_settings.cc",
8 "content_settings.h", 8 "content_settings.h",
9 "content_settings_pattern.cc", 9 "content_settings_pattern.cc",
10 "content_settings_pattern.h", 10 "content_settings_pattern.h",
11 "content_settings_pattern_parser.cc", 11 "content_settings_pattern_parser.cc",
12 "content_settings_pattern_parser.h", 12 "content_settings_pattern_parser.h",
13 "content_settings_switches.cc",
14 "content_settings_switches.h",
13 "content_settings_types.h", 15 "content_settings_types.h",
14 "permission_request_id.cc", 16 "permission_request_id.cc",
15 "permission_request_id.h", 17 "permission_request_id.h",
16 "pref_names.cc", 18 "pref_names.cc",
17 "pref_names.h", 19 "pref_names.h",
18 ] 20 ]
19 21
20 deps = [ 22 deps = [
21 "//base", 23 "//base",
22 "//net", 24 "//net",
23 "//url", 25 "//url",
24 ] 26 ]
25 } 27 }
26 28
27 source_set("unit_tests") { 29 source_set("unit_tests") {
28 testonly = true 30 testonly = true
29 sources = [ 31 sources = [
30 "content_settings_pattern_parser_unittest.cc", 32 "content_settings_pattern_parser_unittest.cc",
31 "content_settings_pattern_unittest.cc", 33 "content_settings_pattern_unittest.cc",
32 ] 34 ]
33 35
34 deps = [ 36 deps = [
35 ":common", 37 ":common",
36 "//net", 38 "//net",
37 "//testing/gmock", 39 "//testing/gmock",
38 "//testing/gtest", 40 "//testing/gtest",
39 "//url", 41 "//url",
40 ] 42 ]
41 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698