Upstream version 8.37.180.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       'target_name': 'data_reduction_proxy_browser',
10       'type': 'static_library',
11       'dependencies': [
12         '../base/base.gyp:base',
13         '../crypto/crypto.gyp:crypto',
14         '../net/net.gyp:net',
15         'data_reduction_proxy_common',
16         'pref_registry',
17       ],
18       'include_dirs': [
19         '..',
20       ],
21       'sources': [
22         'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.cc',
23         'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.h',
24         'data_reduction_proxy/browser/data_reduction_proxy_config_service.cc',
25         'data_reduction_proxy/browser/data_reduction_proxy_config_service.h',
26         'data_reduction_proxy/browser/data_reduction_proxy_configurator.h',
27         'data_reduction_proxy/browser/data_reduction_proxy_metrics.cc',
28         'data_reduction_proxy/browser/data_reduction_proxy_metrics.h',
29         'data_reduction_proxy/browser/data_reduction_proxy_params.cc',
30         'data_reduction_proxy/browser/data_reduction_proxy_params.h',
31         'data_reduction_proxy/browser/data_reduction_proxy_prefs.cc',
32         'data_reduction_proxy/browser/data_reduction_proxy_prefs.h',
33         'data_reduction_proxy/browser/data_reduction_proxy_protocol.cc',
34         'data_reduction_proxy/browser/data_reduction_proxy_protocol.h',
35         'data_reduction_proxy/browser/data_reduction_proxy_settings.cc',
36         'data_reduction_proxy/browser/data_reduction_proxy_settings.h',
37         'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.cc',
38         'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.h',
39       ],
40     },
41     {
42       'target_name': 'data_reduction_proxy_common',
43       'type': 'static_library',
44       'dependencies': [
45         '../base/base.gyp:base',
46       ],
47       'include_dirs': [
48         '..',
49       ],
50       'sources': [
51         'data_reduction_proxy/common/data_reduction_proxy_headers.cc',
52         'data_reduction_proxy/common/data_reduction_proxy_headers.h',
53         'data_reduction_proxy/common/data_reduction_proxy_pref_names.cc',
54         'data_reduction_proxy/common/data_reduction_proxy_pref_names.h',
55         'data_reduction_proxy/common/data_reduction_proxy_switches.cc',
56         'data_reduction_proxy/common/data_reduction_proxy_switches.h',
57       ],
58     },
59     {
60       'target_name': 'data_reduction_proxy_test_support',
61       'type': 'static_library',
62       'dependencies' : [
63         '../base/base.gyp:base',
64         '../net/net.gyp:net',
65         '../net/net.gyp:net_test_support',
66         '../testing/gmock.gyp:gmock',
67         '../testing/gtest.gyp:gtest',
68         'data_reduction_proxy_browser',
69         'data_reduction_proxy_common',
70       ],
71       'include_dirs': [
72         '..',
73       ],
74       'sources': [
75         'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.cc',
76         'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h',
77       ],
78     },
79   ],
80 }
81