Put screenshot.py back to work
[chromium-blink-merge.git] / components / data_reduction_proxy.gypi
blobec99cad3b7f2ee5abf841915091036be3c5b7a86
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/core/browser
10       'target_name': 'data_reduction_proxy_core_browser',
11       'type': 'static_library',
12       'conditions': [
13         ['OS != "android" and OS != "ios"', {
14           'dependencies' : [
15             '../google_apis/google_apis.gyp:google_apis',
16           ]
17         }],
18       ],
19       'dependencies': [
20         'data_reduction_proxy_version_header',
21         '../base/base.gyp:base',
22         '../crypto/crypto.gyp:crypto',
23         '../net/net.gyp:net',
24         '../url/url.gyp:url_lib',
25         'data_reduction_proxy_core_common',
26         'pref_registry',
27       ],
28       'include_dirs': [
29         '..',
30       ],
31       'sources': [
32         # Note: sources list duplicated in GN build.
33         'data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.cc',
34         'data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.h',
35         'data_reduction_proxy/core/browser/data_reduction_proxy_config_service.cc',
36         'data_reduction_proxy/core/browser/data_reduction_proxy_config_service.h',
37         'data_reduction_proxy/core/browser/data_reduction_proxy_configurator.h',
38         'data_reduction_proxy/core/browser/data_reduction_proxy_delegate.cc',
39         'data_reduction_proxy/core/browser/data_reduction_proxy_delegate.h',
40         'data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.cc',
41         'data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h',
42         'data_reduction_proxy/core/browser/data_reduction_proxy_metrics.cc',
43         'data_reduction_proxy/core/browser/data_reduction_proxy_metrics.h',
44         'data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.cc',
45         'data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h',
46         'data_reduction_proxy/core/browser/data_reduction_proxy_prefs.cc',
47         'data_reduction_proxy/core/browser/data_reduction_proxy_prefs.h',
48         'data_reduction_proxy/core/browser/data_reduction_proxy_protocol.cc',
49         'data_reduction_proxy/core/browser/data_reduction_proxy_protocol.h',
50         'data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc',
51         'data_reduction_proxy/core/browser/data_reduction_proxy_settings.h',
52         'data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.cc',
53         'data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.h',
54         'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection.cc',
55         'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection.h',
56         'data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.cc',
57         'data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.h',
58       ],
59     },
60     {
61       # GN version: //components/data_reduction_proxy/core/common
62       'target_name': 'data_reduction_proxy_core_common',
63       'type': 'static_library',
64       'dependencies': [
65         '../base/base.gyp:base',
66         '../url/url.gyp:url_lib',
67       ],
68       'include_dirs': [
69         '..',
70       ],
71       'sources': [
72         # Note: sources list duplicated in GN build.
73         'data_reduction_proxy/core/common/data_reduction_proxy_bypass_type_list.h',
74         'data_reduction_proxy/core/common/data_reduction_proxy_event_store.cc',
75         'data_reduction_proxy/core/common/data_reduction_proxy_event_store.h',
76         'data_reduction_proxy/core/common/data_reduction_proxy_headers.cc',
77         'data_reduction_proxy/core/common/data_reduction_proxy_headers.h',
78         'data_reduction_proxy/core/common/data_reduction_proxy_params.cc',
79         'data_reduction_proxy/core/common/data_reduction_proxy_params.h',
80         'data_reduction_proxy/core/common/data_reduction_proxy_pref_names.cc',
81         'data_reduction_proxy/core/common/data_reduction_proxy_pref_names.h',
82         'data_reduction_proxy/core/common/data_reduction_proxy_switches.cc',
83         'data_reduction_proxy/core/common/data_reduction_proxy_switches.h',
84       ],
85     },
86     {
87       # GN version: //components/data_reduction_proxy/core/browser:test_support
88       'target_name': 'data_reduction_proxy_test_support',
89       'type': 'static_library',
90       'dependencies' : [
91         '../base/base.gyp:base',
92         '../net/net.gyp:net',
93         '../net/net.gyp:net_test_support',
94         '../testing/gmock.gyp:gmock',
95         '../testing/gtest.gyp:gtest',
96         'data_reduction_proxy_core_browser',
97         'data_reduction_proxy_core_common',
98       ],
99       'include_dirs': [
100         '..',
101       ],
102       'sources': [
103         # Note: sources list duplicated in GN build.
104         'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.cc',
105         'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h',
106         'data_reduction_proxy/core/common/data_reduction_proxy_headers_test_utils.cc',
107         'data_reduction_proxy/core/common/data_reduction_proxy_headers_test_utils.h',
108         'data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.cc',
109         'data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h',
110       ],
111     },
112     {
113       'target_name': 'data_reduction_proxy_version_header',
114       'type': 'none',
115       'direct_dependent_settings': {
116         'include_dirs': [
117           '<(SHARED_INTERMEDIATE_DIR)',
118         ],
119       },
120       'actions': [
121         {
122           'action_name': 'version_header',
123           'message': 'Generating version header file: <@(_outputs)',
124           'inputs': [
125             '<(version_path)',
126             'data_reduction_proxy/core/common/version.h.in',
127           ],
128           'outputs': [
129             '<(SHARED_INTERMEDIATE_DIR)/components/data_reduction_proxy/core/common/version.h',
130           ],
131           'action': [
132             'python',
133             '<(version_py_path)',
134             '-e', 'VERSION_FULL="<(version_full)"',
135             'data_reduction_proxy/core/common/version.h.in',
136             '<@(_outputs)',
137           ],
138           'includes': [
139             '../build/util/version.gypi',
140           ],
141         },
142       ],
143     },
145   ],