| 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 "background_downloader_win.cc", | 9 "background_downloader_win.cc", |
| 10 "background_downloader_win.h", | 10 "background_downloader_win.h", |
| 11 "component.cc", | 11 "component.cc", |
| 12 "component.h", | 12 "component.h", |
| 13 "component_patcher.cc", | 13 "component_patcher.cc", |
| 14 "component_patcher.h", | 14 "component_patcher.h", |
| 15 "component_patcher_operation.cc", | 15 "component_patcher_operation.cc", |
| 16 "component_patcher_operation.h", | 16 "component_patcher_operation.h", |
| 17 "component_unpacker.cc", | 17 "component_unpacker.cc", |
| 18 "component_unpacker.h", | 18 "component_unpacker.h", |
| 19 "configurator.h", | 19 "configurator.h", |
| 20 "crx_downloader.cc", | 20 "crx_downloader.cc", |
| 21 "crx_downloader.h", | 21 "crx_downloader.h", |
| 22 "crx_update_item.h", | 22 "crx_update_item.h", |
| 23 "out_of_process_patcher.h", |
| 23 "persisted_data.cc", | 24 "persisted_data.cc", |
| 24 "persisted_data.h", | 25 "persisted_data.h", |
| 25 "ping_manager.cc", | 26 "ping_manager.cc", |
| 26 "ping_manager.h", | 27 "ping_manager.h", |
| 27 "request_sender.cc", | 28 "request_sender.cc", |
| 28 "request_sender.h", | 29 "request_sender.h", |
| 29 "task.h", | 30 "task.h", |
| 30 "task_send_uninstall_ping.cc", | 31 "task_send_uninstall_ping.cc", |
| 31 "task_send_uninstall_ping.h", | 32 "task_send_uninstall_ping.h", |
| 32 "task_update.cc", | 33 "task_update.cc", |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "//components/prefs", | 146 "//components/prefs", |
| 146 "//components/prefs:test_support", | 147 "//components/prefs:test_support", |
| 147 "//components/version_info:version_info", | 148 "//components/version_info:version_info", |
| 148 "//courgette:courgette_lib", | 149 "//courgette:courgette_lib", |
| 149 "//net:test_support", | 150 "//net:test_support", |
| 150 "//testing/gmock", | 151 "//testing/gmock", |
| 151 "//testing/gtest", | 152 "//testing/gtest", |
| 152 "//third_party/libxml", | 153 "//third_party/libxml", |
| 153 ] | 154 ] |
| 154 } | 155 } |
| OLD | NEW |