Support for process-wide incidents in the safe browsing incident reporting service.
[chromium-blink-merge.git] / components / data_reduction_proxy.gypi
blob77f9f69de892519df46d687740ca6ffde75eeef3
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
3 # found in the LICENSE file.
7   'targets': [
8     {
9       # GN version: //components/data_reduction_proxy/browser
10       'target_name': 'data_reduction_proxy_browser',
11       'type': 'static_library',
12       'dependencies': [
13         '../base/base.gyp:base',
14         '../crypto/crypto.gyp:crypto',
15         '../net/net.gyp:net',
16         'data_reduction_proxy_common',
17         'pref_registry',
18       ],
19       'include_dirs': [
20         '..',
21       ],
22       'sources': [
23         # Note: sources list duplicated in GN build.
24         'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.cc',
25         'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.h',
26         'data_reduction_proxy/browser/data_reduction_proxy_config_service.cc',
27         'data_reduction_proxy/browser/data_reduction_proxy_config_service.h',
28         'data_reduction_proxy/browser/data_reduction_proxy_configurator.h',
29         'data_reduction_proxy/browser/data_reduction_proxy_metrics.cc',
30         'data_reduction_proxy/browser/data_reduction_proxy_metrics.h',
31         'data_reduction_proxy/browser/data_reduction_proxy_params.cc',
32         'data_reduction_proxy/browser/data_reduction_proxy_params.h',
33         'data_reduction_proxy/browser/data_reduction_proxy_prefs.cc',
34         'data_reduction_proxy/browser/data_reduction_proxy_prefs.h',
35         'data_reduction_proxy/browser/data_reduction_proxy_protocol.cc',
36         'data_reduction_proxy/browser/data_reduction_proxy_protocol.h',
37         'data_reduction_proxy/browser/data_reduction_proxy_settings.cc',
38         'data_reduction_proxy/browser/data_reduction_proxy_settings.h',
39         'data_reduction_proxy/browser/data_reduction_proxy_usage_stats.cc',
40         'data_reduction_proxy/browser/data_reduction_proxy_usage_stats.h',
41       ],
42     },
43     {
44       # GN version: //components/data_reduction_proxy/common
45       'target_name': 'data_reduction_proxy_common',
46       'type': 'static_library',
47       'dependencies': [
48         '../base/base.gyp:base',
49       ],
50       'include_dirs': [
51         '..',
52       ],
53       'sources': [
54         # Note: sources list duplicated in GN build.
55         'data_reduction_proxy/common/data_reduction_proxy_headers.cc',
56         'data_reduction_proxy/common/data_reduction_proxy_headers.h',
57         'data_reduction_proxy/common/data_reduction_proxy_pref_names.cc',
58         'data_reduction_proxy/common/data_reduction_proxy_pref_names.h',
59         'data_reduction_proxy/common/data_reduction_proxy_switches.cc',
60         'data_reduction_proxy/common/data_reduction_proxy_switches.h',
61       ],
62     },
63     {
64       # GN version: //components/data_reduction_proxy/browser:test_support
65       'target_name': 'data_reduction_proxy_test_support',
66       'type': 'static_library',
67       'dependencies' : [
68         '../base/base.gyp:base',
69         '../net/net.gyp:net',
70         '../net/net.gyp:net_test_support',
71         '../testing/gmock.gyp:gmock',
72         '../testing/gtest.gyp:gtest',
73         'data_reduction_proxy_browser',
74         'data_reduction_proxy_common',
75       ],
76       'include_dirs': [
77         '..',
78       ],
79       'sources': [
80         # Note: sources list duplicated in GN build.
81         'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.cc',
82         'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.h',
83         'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.cc',
84         'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h',
85       ],
86     },
87   ],