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

Unified Diff: components/content_settings.gypi

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.gypi
diff --git a/components/content_settings.gypi b/components/content_settings.gypi
index 79694697ca98652475faf0b590e6376498aadff5..913bf1ad391cfe6624d27a2e43955b94e670a260 100644
--- a/components/content_settings.gypi
+++ b/components/content_settings.gypi
@@ -18,6 +18,8 @@
],
'sources': [
# Note: sources list duplicated in GN build.
+ 'content_settings/core/browser/content_settings_client.cc',
+ 'content_settings/core/browser/content_settings_client.h',
'content_settings/core/browser/content_settings_details.cc',
'content_settings/core/browser/content_settings_details.h',
'content_settings/core/browser/content_settings_observer.h',
@@ -57,5 +59,24 @@
'content_settings/core/common/permission_request_id.cc',
],
},
+ {
+ # GN version: //components/content_settings/core/browser
+ 'target_name': 'content_settings_core_browser_test_utils',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'content_settings_core_browser',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ # Note: sources list duplicated in GN build.
+ 'content_settings/core/browser/stub_content_settings_client.cc',
blundell 2014/10/09 05:50:50 I think this could live in content_settings/core/t
blundell 2014/10/09 05:50:50 nit: these objects would conventionally be called
vabr (Chromium) 2014/10/09 13:47:54 Done.
vabr (Chromium) 2014/10/09 13:47:54 I tried to copy the structure we ended up with in
blundell 2014/10/09 14:00:40 Heh, now that you mention it, I've always had a pr
+ 'content_settings/core/browser/stub_content_settings_client.h',
+ 'content_settings/core/browser/stub_local_shared_objects_counter.cc',
+ 'content_settings/core/browser/stub_local_shared_objects_counter.h',
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698