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

Unified Diff: components/data_reduction_proxy.gypi

Issue 2025443002: Refactoring data reduction proxy some methods to common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing nits Created 4 years, 7 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 17608f013aa938714d7dd0f9a43f5bf39033cad8..471659cf2283dd7ba50145c908e7ca51d222a78a 100644
--- a/components/data_reduction_proxy.gypi
+++ b/components/data_reduction_proxy.gypi
@@ -56,22 +56,20 @@
'data_reduction_proxy_core_browser_deps' : [
'data_reduction_proxy_version_header',
'../base/base.gyp:base',
'../crypto/crypto.gyp:crypto',
'pref_registry',
],
'data_reduction_proxy_core_common_sources' : [
# Note: sources list duplicated in GN build.
'data_reduction_proxy/core/common/data_reduction_proxy_bypass_action_list.h',
'data_reduction_proxy/core/common/data_reduction_proxy_bypass_type_list.h',
- 'data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser.cc',
- 'data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser.h',
'data_reduction_proxy/core/common/data_reduction_proxy_config_values.h',
'data_reduction_proxy/core/common/data_reduction_proxy_event_creator.cc',
'data_reduction_proxy/core/common/data_reduction_proxy_event_creator.h',
'data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate.h',
'data_reduction_proxy/core/common/data_reduction_proxy_event_store.cc',
'data_reduction_proxy/core/common/data_reduction_proxy_event_store.h',
'data_reduction_proxy/core/common/data_reduction_proxy_headers.cc',
'data_reduction_proxy/core/common/data_reduction_proxy_headers.h',
'data_reduction_proxy/core/common/data_reduction_proxy_params.cc',
'data_reduction_proxy/core/common/data_reduction_proxy_params.h',
@@ -185,22 +183,26 @@
'sources': [
'<@(data_reduction_proxy_core_browser_sources)',
'data_reduction_proxy/core/browser/data_store_impl.cc',
'data_reduction_proxy/core/browser/data_store_impl.h',
],
},
{
# GN version: //components/data_reduction_proxy/core/common
'target_name': 'data_reduction_proxy_core_common',
'type': 'static_library',
+ 'defines': [
+ 'USE_GOOGLE_API_KEYS'
+ ],
'dependencies': [
'../base/base.gyp:base',
+ '../google_apis/google_apis.gyp:google_apis',
'../url/url.gyp:url_lib',
'data_reduction_proxy_proto',
],
'include_dirs': [
'..',
],
'sources': [
'<@(data_reduction_proxy_core_common_sources)'
],
},

Powered by Google App Engine
This is Rietveld 408576698