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", |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 85 |
86 source_set("unit_tests") { | 86 source_set("unit_tests") { |
87 testonly = true | 87 testonly = true |
88 sources = [ | 88 sources = [ |
89 "component_patcher_unittest.cc", | 89 "component_patcher_unittest.cc", |
90 "crx_downloader_unittest.cc", | 90 "crx_downloader_unittest.cc", |
91 "ping_manager_unittest.cc", | 91 "ping_manager_unittest.cc", |
92 "request_sender_unittest.cc", | 92 "request_sender_unittest.cc", |
93 "update_checker_unittest.cc", | 93 "update_checker_unittest.cc", |
94 "update_client_unittest.cc", | 94 "update_client_unittest.cc", |
| 95 "update_query_params_unittest.cc", |
95 "update_response_unittest.cc", | 96 "update_response_unittest.cc", |
96 ] | 97 ] |
97 | 98 |
98 deps = [ | 99 deps = [ |
99 ":update_client", | 100 ":update_client", |
100 ":test_support", | 101 ":test_support", |
101 "//base", | 102 "//base", |
102 "//courgette:courgette_lib", | 103 "//courgette:courgette_lib", |
103 "//net:test_support", | 104 "//net:test_support", |
104 "//testing/gtest", | 105 "//testing/gtest", |
105 "//testing/gmock", | 106 "//testing/gmock", |
106 "//third_party/libxml", | 107 "//third_party/libxml", |
107 ] | 108 ] |
108 } | 109 } |
OLD | NEW |