Linux: The App Launcher now appears on the "Internet" menu, not "Other".
[chromium-blink-merge.git] / components / data_reduction_proxy.gypi
blobed6e8783a9d8b02387ddc42c5378b6ed44d396f6
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         'data_reduction_proxy_common',
13         '../base/base.gyp:base',
14         '../crypto/crypto.gyp:crypto',
15         '../net/net.gyp:net',
16       ],
17       'include_dirs': [
18         '..',
19       ],
20       'sources': [
21         'data_reduction_proxy/browser/data_reduction_proxy_configurator.h',
22         'data_reduction_proxy/browser/data_reduction_proxy_metrics.cc',
23         'data_reduction_proxy/browser/data_reduction_proxy_metrics.h',
24         'data_reduction_proxy/browser/data_reduction_proxy_settings.cc',
25         'data_reduction_proxy/browser/data_reduction_proxy_settings.h',
26         'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.cc',
27         'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.h',
28       ],
29     },
30     {
31       'target_name': 'data_reduction_proxy_common',
32       'type': 'static_library',
33       'dependencies': [
34         '../base/base.gyp:base',
35       ],
36       'include_dirs': [
37         '..',
38       ],
39       'sources': [
40         'data_reduction_proxy/common/data_reduction_proxy_pref_names.cc',
41         'data_reduction_proxy/common/data_reduction_proxy_pref_names.h',
42         'data_reduction_proxy/common/data_reduction_proxy_switches.cc',
43         'data_reduction_proxy/common/data_reduction_proxy_switches.h',
44       ],
45     },
46     {
47       'target_name': 'data_reduction_proxy_test_support',
48       'type': 'static_library',
49       'dependencies' : [
50         'data_reduction_proxy_browser',
51         'data_reduction_proxy_common',
52         '../base/base.gyp:base',
53         '../net/net.gyp:net',
54         '../testing/gmock.gyp:gmock',
55         '../testing/gtest.gyp:gtest',
56       ],
57       'include_dirs': [
58         '..',
59       ],
60       'sources': [
61         'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.cc',
62         'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h',
63       ],
64     },
65   ],