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

Unified Diff: components/data_reduction_proxy.gypi

Issue 966443002: Add DataReductionProxy IPC to determine if the Data Reduction Proxy was used. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to head Created 5 years, 10 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/data_reduction_proxy/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/data_reduction_proxy.gypi
diff --git a/components/data_reduction_proxy.gypi b/components/data_reduction_proxy.gypi
index 5184706ea0a6b4f8320d646034c3150d66f7ce80..a5a04847bab7a4ab089ae3e7ded30f503340bb76 100644
--- a/components/data_reduction_proxy.gypi
+++ b/components/data_reduction_proxy.gypi
@@ -33,6 +33,39 @@
],
},
{
+ # 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',
+ ],
+ },
+ {
+ # GN version: //components/data_reduction_proxy/content/browser
+ 'target_name': 'data_reduction_proxy_content_browser',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../content/content.gyp:content_common',
+ '../ipc/ipc.gyp:ipc',
+ 'data_reduction_proxy_content_common',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'data_reduction_proxy/content/browser/data_reduction_proxy_message_filter.cc',
+ 'data_reduction_proxy/content/browser/data_reduction_proxy_message_filter.h',
+ ],
+ },
+ {
# GN version: //components/data_reduction_proxy/core/browser
'target_name': 'data_reduction_proxy_core_browser',
'type': 'static_library',
@@ -181,6 +214,5 @@
},
],
},
-
],
}
« no previous file with comments | « components/components_tests.gyp ('k') | components/data_reduction_proxy/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698