summaryrefslogtreecommitdiffstats
path: root/components/data_reduction_proxy.gypi
blob: 869ef06a06eeee92d56a18b76bc3dde26145d44a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.


{
  'targets': [
    {
      'target_name': 'data_reduction_proxy_browser',
      'type': 'static_library',
      'dependencies': [
        'data_reduction_proxy_common',
        '../base/base.gyp:base',
        '../crypto/crypto.gyp:crypto',
        '../net/net.gyp:net',
      ],
      'include_dirs': [
        '..',
      ],
      'sources': [
        'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.cc',
        'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.h',
        'data_reduction_proxy/browser/data_reduction_proxy_config_service.cc',
        'data_reduction_proxy/browser/data_reduction_proxy_config_service.h',
        'data_reduction_proxy/browser/data_reduction_proxy_configurator.h',
        'data_reduction_proxy/browser/data_reduction_proxy_metrics.cc',
        'data_reduction_proxy/browser/data_reduction_proxy_metrics.h',
        'data_reduction_proxy/browser/data_reduction_proxy_prefs.cc',
        'data_reduction_proxy/browser/data_reduction_proxy_prefs.h',
        'data_reduction_proxy/browser/data_reduction_proxy_settings.cc',
        'data_reduction_proxy/browser/data_reduction_proxy_settings.h',
        'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.cc',
        'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.h',
      ],
    },
    {
      'target_name': 'data_reduction_proxy_common',
      'type': 'static_library',
      'dependencies': [
        '../base/base.gyp:base',
        '../components/components.gyp:user_prefs',
      ],
      'include_dirs': [
        '..',
      ],
      'sources': [
        'data_reduction_proxy/common/data_reduction_proxy_pref_names.cc',
        'data_reduction_proxy/common/data_reduction_proxy_pref_names.h',
        'data_reduction_proxy/common/data_reduction_proxy_switches.cc',
        'data_reduction_proxy/common/data_reduction_proxy_switches.h',
      ],
    },
    {
      'target_name': 'data_reduction_proxy_test_support',
      'type': 'static_library',
      'dependencies' : [
        'data_reduction_proxy_browser',
        'data_reduction_proxy_common',
        '../base/base.gyp:base',
        '../net/net.gyp:net',
        '../testing/gmock.gyp:gmock',
        '../testing/gtest.gyp:gtest',
      ],
      'include_dirs': [
        '..',
      ],
      'sources': [
        'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.cc',
        'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h',
      ],
    },
  ],
}