Chromium Code Reviews| Index: components/data_reduction_proxy.gypi |
| diff --git a/components/data_reduction_proxy.gypi b/components/data_reduction_proxy.gypi |
| index 4742760eedd62bb411130bbc2708c7d1000775e3..3efccb52d0f8413d90d1a7db8e9a471bdd4a1cd7 100644 |
| --- a/components/data_reduction_proxy.gypi |
| +++ b/components/data_reduction_proxy.gypi |
| @@ -46,8 +46,14 @@ |
| 'data_reduction_proxy/core/browser/data_reduction_proxy_service_observer.h', |
| 'data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc', |
| 'data_reduction_proxy/core/browser/data_reduction_proxy_settings.h', |
| + 'data_reduction_proxy/core/browser/db_data_store.cc', |
| + 'data_reduction_proxy/core/browser/db_data_store.h', |
| 'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection.cc', |
| 'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection.h', |
| + 'data_reduction_proxy/core/browser/data_usage_store.cc', |
| + 'data_reduction_proxy/core/browser/data_usage_store.h', |
| + 'data_reduction_proxy/core/browser/db_data_owner.cc', |
| + 'data_reduction_proxy/core/browser/db_data_owner.h', |
|
jeremyim
2015/07/08 18:21:46
Fix sorting
Not at Google. Contact bengr
2015/07/08 19:07:20
Done.
|
| ], |
| 'data_reduction_proxy_core_browser_deps' : [ |
| 'data_reduction_proxy_version_header', |
| @@ -195,12 +201,15 @@ |
| '../url/url.gyp:url_lib', |
| 'data_reduction_proxy_core_common', |
| 'data_reduction_proxy_proto', |
| + '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| ], |
| 'include_dirs': [ |
| '..', |
| ], |
| 'sources': [ |
| - '<@(data_reduction_proxy_core_browser_sources)' |
| + '<@(data_reduction_proxy_core_browser_sources)', |
| + 'data_reduction_proxy/core/browser/db_data_store_impl.cc', |
| + 'data_reduction_proxy/core/browser/db_data_store_impl.h', |
| ], |
| }, |
| { |
| @@ -267,6 +276,7 @@ |
| 'sources': [ |
| # Note: sources list duplicated in GN build. |
| 'data_reduction_proxy/proto/client_config.proto', |
| + 'data_reduction_proxy/proto/db_data_store.proto', |
| ], |
| 'variables': { |
| 'proto_in_dir': 'data_reduction_proxy/proto', |