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 "client_update_protocol_ecdsa.cc", | |
18 "client_update_protocol_ecdsa.h", | |
19 "component_patcher.cc", | 17 "component_patcher.cc", |
20 "component_patcher.h", | 18 "component_patcher.h", |
21 "component_patcher_operation.cc", | 19 "component_patcher_operation.cc", |
22 "component_patcher_operation.h", | 20 "component_patcher_operation.h", |
23 "component_unpacker.cc", | 21 "component_unpacker.cc", |
24 "component_unpacker.h", | 22 "component_unpacker.h", |
25 "configurator.h", | 23 "configurator.h", |
26 "crx_downloader.cc", | 24 "crx_downloader.cc", |
27 "crx_downloader.h", | 25 "crx_downloader.h", |
28 "crx_update_item.h", | 26 "crx_update_item.h", |
(...skipping 18 matching lines...) Expand all Loading... |
47 "update_response.cc", | 45 "update_response.cc", |
48 "update_response.h", | 46 "update_response.h", |
49 "url_fetcher_downloader.cc", | 47 "url_fetcher_downloader.cc", |
50 "url_fetcher_downloader.h", | 48 "url_fetcher_downloader.h", |
51 "utils.cc", | 49 "utils.cc", |
52 "utils.h", | 50 "utils.h", |
53 ] | 51 ] |
54 | 52 |
55 deps = [ | 53 deps = [ |
56 "//base", | 54 "//base", |
| 55 "//components/client_update_protocol", |
57 "//components/crx_file", | 56 "//components/crx_file", |
58 "//courgette:courgette_lib", | 57 "//courgette:courgette_lib", |
59 "//crypto", | 58 "//crypto", |
60 "//net", | 59 "//net", |
61 "//third_party/libxml", | 60 "//third_party/libxml", |
62 "//third_party/zlib:zip", | 61 "//third_party/zlib:zip", |
63 "//url", | 62 "//url", |
64 ] | 63 ] |
65 } | 64 } |
66 | 65 |
(...skipping 16 matching lines...) Expand all Loading... |
83 "//net:test_support", | 82 "//net:test_support", |
84 "//testing/gmock", | 83 "//testing/gmock", |
85 "//testing/gtest", | 84 "//testing/gtest", |
86 "//url", | 85 "//url", |
87 ] | 86 ] |
88 } | 87 } |
89 | 88 |
90 source_set("unit_tests") { | 89 source_set("unit_tests") { |
91 testonly = true | 90 testonly = true |
92 sources = [ | 91 sources = [ |
93 "client_update_protocol_ecdsa_unittest.cc", | |
94 "component_patcher_unittest.cc", | 92 "component_patcher_unittest.cc", |
95 "crx_downloader_unittest.cc", | 93 "crx_downloader_unittest.cc", |
96 "ping_manager_unittest.cc", | 94 "ping_manager_unittest.cc", |
97 "request_sender_unittest.cc", | 95 "request_sender_unittest.cc", |
98 "update_checker_unittest.cc", | 96 "update_checker_unittest.cc", |
99 "update_client_unittest.cc", | 97 "update_client_unittest.cc", |
100 "update_query_params_unittest.cc", | 98 "update_query_params_unittest.cc", |
101 "update_response_unittest.cc", | 99 "update_response_unittest.cc", |
102 "utils_unittest.cc", | 100 "utils_unittest.cc", |
103 ] | 101 ] |
104 | 102 |
105 deps = [ | 103 deps = [ |
106 ":test_support", | 104 ":test_support", |
107 ":update_client", | 105 ":update_client", |
108 "//base", | 106 "//base", |
109 "//courgette:courgette_lib", | 107 "//courgette:courgette_lib", |
110 "//net:test_support", | 108 "//net:test_support", |
111 "//testing/gmock", | 109 "//testing/gmock", |
112 "//testing/gtest", | 110 "//testing/gtest", |
113 "//third_party/libxml", | 111 "//third_party/libxml", |
114 ] | 112 ] |
115 } | 113 } |
OLD | NEW |