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