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

Unified Diff: components/content_settings/core/browser/BUILD.gn

Issue 579673003: Move content_settings_observer.h, content_settings_provider.h, content_settings_rule.* to the compo… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: last comment Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: components/content_settings/core/browser/BUILD.gn
diff --git a/components/content_settings/core/browser/BUILD.gn b/components/content_settings/core/browser/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..272b5e338770fbf00aa1f65dd40d713f67b007c6
--- /dev/null
+++ b/components/content_settings/core/browser/BUILD.gn
@@ -0,0 +1,31 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+static_library("browser") {
+ sources = [
+ "content_settings_details.cc",
+ "content_settings_details.h",
+ "content_settings_observer.h",
+ "content_settings_provider.h",
+ "content_settings_rule.cc",
+ "content_settings_rule.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/content_settings/core/common",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "content_settings_rule_unittest.cc",
+ ]
+
+ deps = [
+ ":browser",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « components/content_settings/core/DEPS ('k') | components/content_settings/core/browser/content_settings_details.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698