| 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 "action.cc", | 7 "action.cc", |
| 8 "action.h", | 8 "action.h", |
| 9 "action_update.cc", | 9 "action_update.cc", |
| 10 "action_update.h", | 10 "action_update.h", |
| 11 "action_update_check.cc", | 11 "action_update_check.cc", |
| 12 "action_update_check.h", | 12 "action_update_check.h", |
| 13 "action_wait.cc", | 13 "action_wait.cc", |
| 14 "action_wait.h", | 14 "action_wait.h", |
| 15 "background_downloader_win.cc", | 15 "background_downloader_win.cc", |
| 16 "background_downloader_win.h", | 16 "background_downloader_win.h", |
| 17 "component_metadata.cc", |
| 18 "component_metadata.h", |
| 17 "component_patcher.cc", | 19 "component_patcher.cc", |
| 18 "component_patcher.h", | 20 "component_patcher.h", |
| 19 "component_patcher_operation.cc", | 21 "component_patcher_operation.cc", |
| 20 "component_patcher_operation.h", | 22 "component_patcher_operation.h", |
| 21 "component_unpacker.cc", | 23 "component_unpacker.cc", |
| 22 "component_unpacker.h", | 24 "component_unpacker.h", |
| 23 "configurator.h", | 25 "configurator.h", |
| 24 "crx_downloader.cc", | 26 "crx_downloader.cc", |
| 25 "crx_downloader.h", | 27 "crx_downloader.h", |
| 26 "crx_update_item.h", | 28 "crx_update_item.h", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 "//net:test_support", | 84 "//net:test_support", |
| 83 "//testing/gmock", | 85 "//testing/gmock", |
| 84 "//testing/gtest", | 86 "//testing/gtest", |
| 85 "//url", | 87 "//url", |
| 86 ] | 88 ] |
| 87 } | 89 } |
| 88 | 90 |
| 89 source_set("unit_tests") { | 91 source_set("unit_tests") { |
| 90 testonly = true | 92 testonly = true |
| 91 sources = [ | 93 sources = [ |
| 94 "component_metadata_unittest.cc", |
| 92 "component_patcher_unittest.cc", | 95 "component_patcher_unittest.cc", |
| 93 "crx_downloader_unittest.cc", | 96 "crx_downloader_unittest.cc", |
| 94 "ping_manager_unittest.cc", | 97 "ping_manager_unittest.cc", |
| 95 "request_sender_unittest.cc", | 98 "request_sender_unittest.cc", |
| 96 "update_checker_unittest.cc", | 99 "update_checker_unittest.cc", |
| 97 "update_client_unittest.cc", | 100 "update_client_unittest.cc", |
| 98 "update_query_params_unittest.cc", | 101 "update_query_params_unittest.cc", |
| 99 "update_response_unittest.cc", | 102 "update_response_unittest.cc", |
| 100 "utils_unittest.cc", | 103 "utils_unittest.cc", |
| 101 ] | 104 ] |
| 102 | 105 |
| 103 deps = [ | 106 deps = [ |
| 104 ":test_support", | 107 ":test_support", |
| 105 ":update_client", | 108 ":update_client", |
| 106 "//base", | 109 "//base", |
| 107 "//courgette:courgette_lib", | 110 "//courgette:courgette_lib", |
| 108 "//net:test_support", | 111 "//net:test_support", |
| 109 "//testing/gmock", | 112 "//testing/gmock", |
| 110 "//testing/gtest", | 113 "//testing/gtest", |
| 111 "//third_party/libxml", | 114 "//third_party/libxml", |
| 112 ] | 115 ] |
| 113 } | 116 } |
| OLD | NEW |