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 source_set("component_updater") { | 5 source_set("component_updater") { |
6 sources = [ | 6 sources = [ |
| 7 "background_downloader_win.cc", |
| 8 "background_downloader_win.h", |
| 9 "component_patcher.cc", |
| 10 "component_patcher.h", |
| 11 "component_patcher_operation.cc", |
| 12 "component_patcher_operation.h", |
| 13 "component_updater_configurator.h", |
| 14 "component_unpacker.cc", |
| 15 "component_unpacker.h", |
7 "component_updater_paths.cc", | 16 "component_updater_paths.cc", |
8 "component_updater_paths.h", | 17 "component_updater_paths.h", |
| 18 "component_updater_ping_manager.cc", |
| 19 "component_updater_ping_manager.h", |
| 20 "component_updater_service.cc", |
| 21 "component_updater_service.h", |
9 "component_updater_switches.cc", | 22 "component_updater_switches.cc", |
10 "component_updater_switches.h", | 23 "component_updater_switches.h", |
| 24 "component_updater_utils.cc", |
| 25 "component_updater_utils.h", |
| 26 "crx_update_item.h", |
| 27 "crx_downloader.cc", |
| 28 "crx_downloader.h", |
| 29 "default_component_installer.cc", |
| 30 "default_component_installer.h", |
11 "pref_names.cc", | 31 "pref_names.cc", |
12 "pref_names.h", | 32 "pref_names.h", |
| 33 "update_checker.cc", |
| 34 "update_checker.h", |
| 35 "update_response.cc", |
| 36 "update_response.h", |
| 37 "url_fetcher_downloader.cc", |
| 38 "url_fetcher_downloader.h", |
13 ] | 39 ] |
14 | 40 |
15 deps = [ | 41 deps = [ |
16 "//base", | 42 "//base", |
| 43 "//components/crx_file", |
| 44 "//components/omaha_query_params", |
| 45 "//courgette:courgette_lib", |
| 46 "//crypto", |
| 47 "//third_party/libxml", |
| 48 "//third_party/zlib", |
| 49 "//net", |
| 50 "//ui/base", |
17 ] | 51 ] |
18 } | 52 } |
OLD | NEW |