| 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("update_client") { | 5 source_set("update_client") { |
| 6 sources = [ | 6 sources = [ |
| 7 "background_downloader_win.cc", | 7 "background_downloader_win.cc", |
| 8 "background_downloader_win.h", | 8 "background_downloader_win.h", |
| 9 "component_patcher.cc", | 9 "component_patcher.cc", |
| 10 "component_patcher.h", | 10 "component_patcher.h", |
| 11 "component_patcher_operation.cc", | 11 "component_patcher_operation.cc", |
| 12 "component_patcher_operation.h", | 12 "component_patcher_operation.h", |
| 13 "component_unpacker.cc", | 13 "component_unpacker.cc", |
| 14 "component_unpacker.h", | 14 "component_unpacker.h", |
| 15 "configurator.h", |
| 15 "crx_downloader.cc", | 16 "crx_downloader.cc", |
| 16 "crx_downloader.h", | 17 "crx_downloader.h", |
| 17 "crx_update_item.h", | 18 "crx_update_item.h", |
| 18 "ping_manager.cc", | 19 "ping_manager.cc", |
| 19 "ping_manager.h", | 20 "ping_manager.h", |
| 20 "request_sender.cc", | 21 "request_sender.cc", |
| 21 "request_sender.h", | 22 "request_sender.h", |
| 22 "update_checker.cc", | 23 "update_checker.cc", |
| 23 "update_checker.h", | 24 "update_checker.h", |
| 24 "update_client.cc", | 25 "update_client.cc", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 ":update_client", | 84 ":update_client", |
| 84 ":test_support", | 85 ":test_support", |
| 85 "//base", | 86 "//base", |
| 86 "//courgette:courgette_lib", | 87 "//courgette:courgette_lib", |
| 87 "//net:test_support", | 88 "//net:test_support", |
| 88 "//testing/gtest", | 89 "//testing/gtest", |
| 89 "//testing/gmock", | 90 "//testing/gmock", |
| 90 "//third_party/libxml", | 91 "//third_party/libxml", |
| 91 ] | 92 ] |
| 92 } | 93 } |
| OLD | NEW |