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

Unified Diff: components/data_reduction_proxy.gypi

Issue 2063683002: Migrate components/data_reduction_proxy to Mojo interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase only Created 4 years, 5 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/data_reduction_proxy.gypi
diff --git a/components/data_reduction_proxy.gypi b/components/data_reduction_proxy.gypi
index 47fd1af4382e8fbcc773980718d6d7f20310995d..3c58dd4739a3af411c556b42d4c2c32f69caf7b6 100644
--- a/components/data_reduction_proxy.gypi
+++ b/components/data_reduction_proxy.gypi
@@ -116,17 +116,21 @@
# GN version: //components/data_reduction_proxy/content/common
'target_name': 'data_reduction_proxy_content_common',
'type': 'static_library',
- 'dependencies': [
- '../content/content.gyp:content_common',
- '../ipc/ipc.gyp:ipc',
- ],
- 'include_dirs': [
- '..',
- ],
'sources': [
- 'data_reduction_proxy/content/common/data_reduction_proxy_messages.cc',
- 'data_reduction_proxy/content/common/data_reduction_proxy_messages.h',
+ 'data_reduction_proxy/content/common/data_reduction_proxy.mojom',
+ ],
+ 'dependencies': [
+ '../net/net.gyp:net_base_mojo_bindings',
],
+ 'export_dependent_settings': [
+ '../net/net.gyp:net_base_mojo_bindings',
+ ],
+ 'variables': {
+ 'mojom_typemaps': [
+ '<(DEPTH)/net/base/mojo/net_base.typemap',
+ ],
+ },
+ 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
},
{
# GN version: //components/data_reduction_proxy/content/browser
@@ -134,7 +138,6 @@
'type': 'static_library',
'dependencies': [
'../content/content.gyp:content_common',
- '../ipc/ipc.gyp:ipc',
'../skia/skia.gyp:skia',
'data_reduction_proxy_content_common',
],
@@ -146,8 +149,8 @@
'data_reduction_proxy/content/browser/content_lofi_ui_service.h',
'data_reduction_proxy/content/browser/content_lofi_decider.cc',
'data_reduction_proxy/content/browser/content_lofi_decider.h',
- 'data_reduction_proxy/content/browser/data_reduction_proxy_message_filter.cc',
- 'data_reduction_proxy/content/browser/data_reduction_proxy_message_filter.h',
+ 'data_reduction_proxy/content/browser/data_reduction_proxy_host_impl.cc',
+ 'data_reduction_proxy/content/browser/data_reduction_proxy_host_impl.h',
],
},
],

Powered by Google App Engine
This is Rietveld 408576698