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

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

Issue 640753002: Introduce ContentSettingsClient interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@384873_move_interface_to_component
Patch Set: Errors fixed Created 6 years, 2 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
index 04354f647a83e1504ac14a62c47376f2dafeac5f..4fcc717508df132f02f6bcf156894f554a93bc17 100644
--- a/components/content_settings/core/browser/BUILD.gn
+++ b/components/content_settings/core/browser/BUILD.gn
@@ -4,6 +4,8 @@
static_library("browser") {
sources = [
+ "content_settings_client.cc",
+ "content_settings_client.h",
"content_settings_details.cc",
"content_settings_details.h",
"content_settings_observer.h",
@@ -23,6 +25,19 @@ static_library("browser") {
]
}
+static_library("browser_test_utils") {
+ sources = [
+ "stub_content_settings_client.cc",
+ "stub_content_settings_client.h",
+ "stub_local_shared_objects_counter.cc",
+ "stub_local_shared_objects_counter.h",
+ ]
+
+ deps = [
+ "//base",
+ ]
+}
+
source_set("unit_tests") {
testonly = true
sources = [

Powered by Google App Engine
This is Rietveld 408576698