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_patcher.cc", | 17 "component_patcher.cc", |
18 "component_patcher.h", | 18 "component_patcher.h", |
19 "component_patcher_operation.cc", | 19 "component_patcher_operation.cc", |
20 "component_patcher_operation.h", | 20 "component_patcher_operation.h", |
21 "component_unpacker.cc", | 21 "component_unpacker.cc", |
22 "component_unpacker.h", | 22 "component_unpacker.h", |
23 "configurator.h", | 23 "configurator.h", |
24 "crx_downloader.cc", | 24 "crx_downloader.cc", |
25 "crx_downloader.h", | 25 "crx_downloader.h", |
26 "crx_update_item.h", | 26 "crx_update_item.h", |
| 27 "persisted_data.cc", |
| 28 "persisted_data.h", |
27 "ping_manager.cc", | 29 "ping_manager.cc", |
28 "ping_manager.h", | 30 "ping_manager.h", |
29 "request_sender.cc", | 31 "request_sender.cc", |
30 "request_sender.h", | 32 "request_sender.h", |
31 "task.h", | 33 "task.h", |
32 "task_update.cc", | 34 "task_update.cc", |
33 "task_update.h", | 35 "task_update.h", |
34 "update_checker.cc", | 36 "update_checker.cc", |
35 "update_checker.h", | 37 "update_checker.h", |
36 "update_client.cc", | 38 "update_client.cc", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 = [ |
92 "component_patcher_unittest.cc", | 94 "component_patcher_unittest.cc", |
93 "crx_downloader_unittest.cc", | 95 "crx_downloader_unittest.cc", |
| 96 "persisted_data_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 |