add SK_SUPPORT_LEGACY_HQ_SCALING to suppress changes to HQ scaling
[chromium-blink-merge.git] / components / component_updater.gypi
blobbdec48ce33bd64aede29cbf5c8b3ff570d60cbfc
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.
6   'targets': [
7     {
8       # GN version: //components/component_updater
9       'target_name': 'component_updater',
10       'type': 'static_library',
11       'dependencies': [
12         '../base/base.gyp:base',
13         '../courgette/courgette.gyp:courgette_lib',
14         '../crypto/crypto.gyp:crypto',
15         '../third_party/libxml/libxml.gyp:libxml',
16         '../third_party/zlib/google/zip.gyp:zip',
17         '../net/net.gyp:net',
18         '../ui/base/ui_base.gyp:ui_base',
19         '../url/url.gyp:url_lib',
20         'crx_file',
21         'update_client',
22       ],
23       'include_dirs': [
24         '..',
25       ],
26       'sources': [
27         'component_updater/background_downloader_win.cc',
28         'component_updater/background_downloader_win.h',
29         'component_updater/component_patcher.cc',
30         'component_updater/component_patcher.h',
31         'component_updater/component_patcher_operation.cc',
32         'component_updater/component_patcher_operation.h',
33         'component_updater/component_updater_configurator.h',
34         'component_updater/component_unpacker.cc',
35         'component_updater/component_unpacker.h',
36         'component_updater/component_updater_paths.cc',
37         'component_updater/component_updater_paths.h',
38         'component_updater/component_updater_ping_manager.cc',
39         'component_updater/component_updater_ping_manager.h',
40         'component_updater/component_updater_service.cc',
41         'component_updater/component_updater_service.h',
42         'component_updater/component_updater_switches.cc',
43         'component_updater/component_updater_switches.h',
44         'component_updater/component_updater_utils.cc',
45         'component_updater/component_updater_utils.h',
46         'component_updater/crx_update_item.h',
47         'component_updater/crx_downloader.cc',
48         'component_updater/crx_downloader.h',
49         'component_updater/default_component_installer.cc',
50         'component_updater/default_component_installer.h',
51         'component_updater/pref_names.cc',
52         'component_updater/pref_names.h',
53         'component_updater/request_sender.cc',
54         'component_updater/request_sender.h',
55         'component_updater/update_checker.cc',
56         'component_updater/update_checker.h',
57         'component_updater/update_response.cc',
58         'component_updater/update_response.h',
59         'component_updater/url_fetcher_downloader.cc',
60         'component_updater/url_fetcher_downloader.h',
61       ],
62     },
63     {
64       # GN version: //components/component_updater:test_support
65       'target_name': 'component_updater_test_support',
66       'type': 'static_library',
67       'dependencies': [
68         'component_updater',
69         '../testing/gmock.gyp:gmock',
70         '../testing/gtest.gyp:gtest',
71       ],
72       'sources': [
73         'component_updater/test/test_configurator.cc',
74         'component_updater/test/test_configurator.h',
75         'component_updater/test/test_installer.cc',
76         'component_updater/test/test_installer.h',
77         'component_updater/test/url_request_post_interceptor.cc',
78         'component_updater/test/url_request_post_interceptor.h',
79       ],
80     },
81   ],