OLD | NEW |
| (Empty) |
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 'targets': [ | |
7 { | |
8 # GN version: //components/update_client | |
9 'target_name': 'update_client', | |
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 '../url/url.gyp:url_lib', | |
19 'client_update_protocol', | |
20 'crx_file', | |
21 ], | |
22 | |
23 'include_dirs': [ | |
24 '..', | |
25 ], | |
26 'sources': [ | |
27 'update_client/action.cc', | |
28 'update_client/action.h', | |
29 'update_client/action_update.cc', | |
30 'update_client/action_update.h', | |
31 'update_client/action_update_check.cc', | |
32 'update_client/action_update_check.h', | |
33 'update_client/action_wait.cc', | |
34 'update_client/action_wait.h', | |
35 'update_client/background_downloader_win.cc', | |
36 'update_client/background_downloader_win.h', | |
37 'update_client/component_patcher.cc', | |
38 'update_client/component_patcher.h', | |
39 'update_client/component_patcher_operation.cc', | |
40 'update_client/component_patcher_operation.h', | |
41 'update_client/component_unpacker.cc', | |
42 'update_client/component_unpacker.h', | |
43 'update_client/configurator.h', | |
44 'update_client/crx_downloader.cc', | |
45 'update_client/crx_downloader.h', | |
46 'update_client/crx_update_item.h', | |
47 'update_client/persisted_data.cc', | |
48 'update_client/persisted_data.h', | |
49 'update_client/ping_manager.cc', | |
50 'update_client/ping_manager.h', | |
51 'update_client/request_sender.cc', | |
52 'update_client/request_sender.h', | |
53 'update_client/task.h', | |
54 'update_client/task_update.cc', | |
55 'update_client/task_update.h', | |
56 'update_client/update_checker.cc', | |
57 'update_client/update_checker.h', | |
58 'update_client/update_client.cc', | |
59 'update_client/update_client.h', | |
60 'update_client/update_client_internal.h', | |
61 'update_client/update_engine.cc', | |
62 'update_client/update_engine.h', | |
63 'update_client/update_query_params.cc', | |
64 'update_client/update_query_params.h', | |
65 'update_client/update_query_params_delegate.cc', | |
66 'update_client/update_query_params_delegate.h', | |
67 'update_client/update_response.cc', | |
68 'update_client/update_response.h', | |
69 'update_client/url_fetcher_downloader.cc', | |
70 'update_client/url_fetcher_downloader.h', | |
71 'update_client/utils.cc', | |
72 'update_client/utils.h', | |
73 ], | |
74 }, | |
75 { | |
76 # GN version: //components/update_client:test_support | |
77 'target_name': 'update_client_test_support', | |
78 'type': 'static_library', | |
79 'dependencies': [ | |
80 'update_client', | |
81 '../testing/gmock.gyp:gmock', | |
82 '../testing/gtest.gyp:gtest', | |
83 ], | |
84 | |
85 'include_dirs': [ | |
86 '..', | |
87 ], | |
88 'sources': [ | |
89 'update_client/test_configurator.cc', | |
90 'update_client/test_configurator.h', | |
91 'update_client/test_installer.cc', | |
92 'update_client/test_installer.h', | |
93 'update_client/url_request_post_interceptor.cc', | |
94 'update_client/url_request_post_interceptor.h', | |
95 ], | |
96 }, | |
97 ], | |
98 } | |
OLD | NEW |