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