OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 | 5 |
6 { | 6 { |
7 'variables' : | 7 'variables' : |
8 { | 8 { |
9 'data_reduction_proxy_core_browser_sources' : [ | 9 'data_reduction_proxy_core_browser_sources' : [ |
10 # Note: sources list duplicated in GN build. | 10 # Note: sources list duplicated in GN build. |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 'data_reduction_proxy_core_browser_deps' : [ | 56 'data_reduction_proxy_core_browser_deps' : [ |
57 'data_reduction_proxy_version_header', | 57 'data_reduction_proxy_version_header', |
58 '../base/base.gyp:base', | 58 '../base/base.gyp:base', |
59 '../crypto/crypto.gyp:crypto', | 59 '../crypto/crypto.gyp:crypto', |
60 'pref_registry', | 60 'pref_registry', |
61 ], | 61 ], |
62 'data_reduction_proxy_core_common_sources' : [ | 62 'data_reduction_proxy_core_common_sources' : [ |
63 # Note: sources list duplicated in GN build. | 63 # Note: sources list duplicated in GN build. |
64 'data_reduction_proxy/core/common/data_reduction_proxy_bypass_action_lis
t.h', | 64 'data_reduction_proxy/core/common/data_reduction_proxy_bypass_action_lis
t.h', |
65 'data_reduction_proxy/core/common/data_reduction_proxy_bypass_type_list.
h', | 65 'data_reduction_proxy/core/common/data_reduction_proxy_bypass_type_list.
h', |
66 'data_reduction_proxy/core/common/data_reduction_proxy_client_config_par
ser.cc', | |
67 'data_reduction_proxy/core/common/data_reduction_proxy_client_config_par
ser.h', | |
68 'data_reduction_proxy/core/common/data_reduction_proxy_config_values.h', | 66 'data_reduction_proxy/core/common/data_reduction_proxy_config_values.h', |
69 'data_reduction_proxy/core/common/data_reduction_proxy_event_creator.cc'
, | 67 'data_reduction_proxy/core/common/data_reduction_proxy_event_creator.cc'
, |
70 'data_reduction_proxy/core/common/data_reduction_proxy_event_creator.h', | 68 'data_reduction_proxy/core/common/data_reduction_proxy_event_creator.h', |
71 'data_reduction_proxy/core/common/data_reduction_proxy_event_storage_del
egate.h', | 69 'data_reduction_proxy/core/common/data_reduction_proxy_event_storage_del
egate.h', |
72 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.cc', | 70 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.cc', |
73 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.h', | 71 'data_reduction_proxy/core/common/data_reduction_proxy_event_store.h', |
74 'data_reduction_proxy/core/common/data_reduction_proxy_headers.cc', | 72 'data_reduction_proxy/core/common/data_reduction_proxy_headers.cc', |
75 'data_reduction_proxy/core/common/data_reduction_proxy_headers.h', | 73 'data_reduction_proxy/core/common/data_reduction_proxy_headers.h', |
76 'data_reduction_proxy/core/common/data_reduction_proxy_params.cc', | 74 'data_reduction_proxy/core/common/data_reduction_proxy_params.cc', |
77 'data_reduction_proxy/core/common/data_reduction_proxy_params.h', | 75 'data_reduction_proxy/core/common/data_reduction_proxy_params.h', |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 'sources': [ | 183 'sources': [ |
186 '<@(data_reduction_proxy_core_browser_sources)', | 184 '<@(data_reduction_proxy_core_browser_sources)', |
187 'data_reduction_proxy/core/browser/data_store_impl.cc', | 185 'data_reduction_proxy/core/browser/data_store_impl.cc', |
188 'data_reduction_proxy/core/browser/data_store_impl.h', | 186 'data_reduction_proxy/core/browser/data_store_impl.h', |
189 ], | 187 ], |
190 }, | 188 }, |
191 { | 189 { |
192 # GN version: //components/data_reduction_proxy/core/common | 190 # GN version: //components/data_reduction_proxy/core/common |
193 'target_name': 'data_reduction_proxy_core_common', | 191 'target_name': 'data_reduction_proxy_core_common', |
194 'type': 'static_library', | 192 'type': 'static_library', |
| 193 'defines': [ |
| 194 'USE_GOOGLE_API_KEYS' |
| 195 ], |
195 'dependencies': [ | 196 'dependencies': [ |
196 '../base/base.gyp:base', | 197 '../base/base.gyp:base', |
| 198 '../google_apis/google_apis.gyp:google_apis', |
197 '../url/url.gyp:url_lib', | 199 '../url/url.gyp:url_lib', |
198 'data_reduction_proxy_proto', | 200 'data_reduction_proxy_proto', |
199 ], | 201 ], |
200 'include_dirs': [ | 202 'include_dirs': [ |
201 '..', | 203 '..', |
202 ], | 204 ], |
203 'sources': [ | 205 'sources': [ |
204 '<@(data_reduction_proxy_core_common_sources)' | 206 '<@(data_reduction_proxy_core_common_sources)' |
205 ], | 207 ], |
206 }, | 208 }, |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 '<@(_outputs)', | 287 '<@(_outputs)', |
286 ], | 288 ], |
287 'includes': [ | 289 'includes': [ |
288 '../build/util/version.gypi', | 290 '../build/util/version.gypi', |
289 ], | 291 ], |
290 }, | 292 }, |
291 ], | 293 ], |
292 }, | 294 }, |
293 ], | 295 ], |
294 } | 296 } |
OLD | NEW |