OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//net/features.gni") | 5 import("//net/features.gni") |
6 | 6 |
7 static_library("update_client") { | 7 static_library("update_client") { |
8 sources = [ | 8 sources = [ |
9 "action.cc", | |
10 "action.h", | |
11 "action_update.cc", | |
12 "action_update.h", | |
13 "action_update_check.cc", | |
14 "action_update_check.h", | |
15 "action_wait.cc", | |
16 "action_wait.h", | |
17 "background_downloader_win.cc", | 9 "background_downloader_win.cc", |
18 "background_downloader_win.h", | 10 "background_downloader_win.h", |
| 11 "component.cc", |
| 12 "component.h", |
19 "component_patcher.cc", | 13 "component_patcher.cc", |
20 "component_patcher.h", | 14 "component_patcher.h", |
21 "component_patcher_operation.cc", | 15 "component_patcher_operation.cc", |
22 "component_patcher_operation.h", | 16 "component_patcher_operation.h", |
23 "component_unpacker.cc", | 17 "component_unpacker.cc", |
24 "component_unpacker.h", | 18 "component_unpacker.h", |
25 "configurator.h", | 19 "configurator.h", |
26 "crx_downloader.cc", | 20 "crx_downloader.cc", |
27 "crx_downloader.h", | 21 "crx_downloader.h", |
28 "crx_update_item.h", | 22 "crx_update_item.h", |
29 "persisted_data.cc", | 23 "persisted_data.cc", |
30 "persisted_data.h", | 24 "persisted_data.h", |
31 "ping_manager.cc", | 25 "ping_manager.cc", |
32 "ping_manager.h", | 26 "ping_manager.h", |
33 "request_sender.cc", | 27 "request_sender.cc", |
34 "request_sender.h", | 28 "request_sender.h", |
35 "task.h", | 29 "task.h", |
| 30 "task_send_uninstall_ping.cc", |
| 31 "task_send_uninstall_ping.h", |
36 "task_update.cc", | 32 "task_update.cc", |
37 "task_update.h", | 33 "task_update.h", |
38 "update_checker.cc", | 34 "update_checker.cc", |
39 "update_checker.h", | 35 "update_checker.h", |
40 "update_client.cc", | 36 "update_client.cc", |
41 "update_client.h", | 37 "update_client.h", |
42 "update_client_errors.h", | 38 "update_client_errors.h", |
43 "update_client_internal.h", | 39 "update_client_internal.h", |
44 "update_engine.cc", | 40 "update_engine.cc", |
45 "update_engine.h", | 41 "update_engine.h", |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 "//components/prefs", | 144 "//components/prefs", |
149 "//components/prefs:test_support", | 145 "//components/prefs:test_support", |
150 "//components/version_info:version_info", | 146 "//components/version_info:version_info", |
151 "//courgette:courgette_lib", | 147 "//courgette:courgette_lib", |
152 "//net:test_support", | 148 "//net:test_support", |
153 "//testing/gmock", | 149 "//testing/gmock", |
154 "//testing/gtest", | 150 "//testing/gtest", |
155 "//third_party/libxml", | 151 "//third_party/libxml", |
156 ] | 152 ] |
157 } | 153 } |
OLD | NEW |