Remove implicit conversions from scoped_refptr to T* in net/socket/
[chromium-blink-merge.git] / components / data_reduction_proxy.gypi
blob9be6ed7fd45411fc6edb25350ba1a79773fcb44c
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_tamper_detection.cc',
40         'data_reduction_proxy/browser/data_reduction_proxy_tamper_detection.h',
41         'data_reduction_proxy/browser/data_reduction_proxy_usage_stats.cc',
42         'data_reduction_proxy/browser/data_reduction_proxy_usage_stats.h',
43       ],
44     },
45     {
46       # GN version: //components/data_reduction_proxy/common
47       'target_name': 'data_reduction_proxy_common',
48       'type': 'static_library',
49       'dependencies': [
50         '../base/base.gyp:base',
51       ],
52       'include_dirs': [
53         '..',
54       ],
55       'sources': [
56         # Note: sources list duplicated in GN build.
57         'data_reduction_proxy/common/data_reduction_proxy_headers.cc',
58         'data_reduction_proxy/common/data_reduction_proxy_headers.h',
59         'data_reduction_proxy/common/data_reduction_proxy_pref_names.cc',
60         'data_reduction_proxy/common/data_reduction_proxy_pref_names.h',
61         'data_reduction_proxy/common/data_reduction_proxy_switches.cc',
62         'data_reduction_proxy/common/data_reduction_proxy_switches.h',
63       ],
64     },
65     {
66       # GN version: //components/data_reduction_proxy/browser:test_support
67       'target_name': 'data_reduction_proxy_test_support',
68       'type': 'static_library',
69       'dependencies' : [
70         '../base/base.gyp:base',
71         '../net/net.gyp:net',
72         '../net/net.gyp:net_test_support',
73         '../testing/gmock.gyp:gmock',
74         '../testing/gtest.gyp:gtest',
75         'data_reduction_proxy_browser',
76         'data_reduction_proxy_common',
77       ],
78       'include_dirs': [
79         '..',
80       ],
81       'sources': [
82         # Note: sources list duplicated in GN build.
83         'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.cc',
84         'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.h',
85         'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.cc',
86         'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h',
87       ],
88     },
89   ],