Add an extension override bubble and warning box for proxy extensions. (2nd attempt...
[chromium-blink-merge.git] / components / data_reduction_proxy.gypi
blobbfe50a283a72c04f70a841bed254300d4bb235d7
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       '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_settings.cc',
34         'data_reduction_proxy/browser/data_reduction_proxy_settings.h',
35         'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.cc',
36         'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.h',
37       ],
38     },
39     {
40       'target_name': 'data_reduction_proxy_common',
41       'type': 'static_library',
42       'dependencies': [
43         '../base/base.gyp:base',
44       ],
45       'include_dirs': [
46         '..',
47       ],
48       'sources': [
49         'data_reduction_proxy/common/data_reduction_proxy_pref_names.cc',
50         'data_reduction_proxy/common/data_reduction_proxy_pref_names.h',
51         'data_reduction_proxy/common/data_reduction_proxy_switches.cc',
52         'data_reduction_proxy/common/data_reduction_proxy_switches.h',
53       ],
54     },
55     {
56       'target_name': 'data_reduction_proxy_test_support',
57       'type': 'static_library',
58       'dependencies' : [
59         '../base/base.gyp:base',
60         '../net/net.gyp:net',
61         '../testing/gmock.gyp:gmock',
62         '../testing/gtest.gyp:gtest',
63         'data_reduction_proxy_browser',
64         'data_reduction_proxy_common',
65       ],
66       'include_dirs': [
67         '..',
68       ],
69       'sources': [
70         'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.cc',
71         'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h',
72       ],
73     },
74   ],