| 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 import("//net/features.gni") | 5 import("//net/features.gni") |
| 6 | 6 |
| 7 static_library("update_client") { | 7 static_library("update_client") { |
| 8 sources = [ | 8 sources = [ |
| 9 "action.cc", | 9 "action.cc", |
| 10 "action.h", | 10 "action.h", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "update_client_errors.h", | 42 "update_client_errors.h", |
| 43 "update_client_internal.h", | 43 "update_client_internal.h", |
| 44 "update_engine.cc", | 44 "update_engine.cc", |
| 45 "update_engine.h", | 45 "update_engine.h", |
| 46 "update_query_params.cc", | 46 "update_query_params.cc", |
| 47 "update_query_params.h", | 47 "update_query_params.h", |
| 48 "update_query_params_delegate.cc", | 48 "update_query_params_delegate.cc", |
| 49 "update_query_params_delegate.h", | 49 "update_query_params_delegate.h", |
| 50 "update_response.cc", | 50 "update_response.cc", |
| 51 "update_response.h", | 51 "update_response.h", |
| 52 "updater_state.cc", |
| 53 "updater_state.h", |
| 54 "updater_state_win.cc", |
| 52 "url_fetcher_downloader.cc", | 55 "url_fetcher_downloader.cc", |
| 53 "url_fetcher_downloader.h", | 56 "url_fetcher_downloader.h", |
| 54 "utils.cc", | 57 "utils.cc", |
| 55 "utils.h", | 58 "utils.h", |
| 56 ] | 59 ] |
| 57 | 60 |
| 58 deps = [ | 61 deps = [ |
| 59 "//base", | 62 "//base", |
| 60 "//components/client_update_protocol", | 63 "//components/client_update_protocol", |
| 61 "//components/crx_file", | 64 "//components/crx_file", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 sources = [ | 122 sources = [ |
| 120 "component_patcher_unittest.cc", | 123 "component_patcher_unittest.cc", |
| 121 "component_unpacker_unittest.cc", | 124 "component_unpacker_unittest.cc", |
| 122 "persisted_data_unittest.cc", | 125 "persisted_data_unittest.cc", |
| 123 "ping_manager_unittest.cc", | 126 "ping_manager_unittest.cc", |
| 124 "request_sender_unittest.cc", | 127 "request_sender_unittest.cc", |
| 125 "update_checker_unittest.cc", | 128 "update_checker_unittest.cc", |
| 126 "update_client_unittest.cc", | 129 "update_client_unittest.cc", |
| 127 "update_query_params_unittest.cc", | 130 "update_query_params_unittest.cc", |
| 128 "update_response_unittest.cc", | 131 "update_response_unittest.cc", |
| 132 "updater_state_unittest.cc", |
| 129 "utils_unittest.cc", | 133 "utils_unittest.cc", |
| 130 ] | 134 ] |
| 131 | 135 |
| 132 if (!disable_file_support) { | 136 if (!disable_file_support) { |
| 133 sources += [ "crx_downloader_unittest.cc" ] | 137 sources += [ "crx_downloader_unittest.cc" ] |
| 134 } | 138 } |
| 135 | 139 |
| 136 deps = [ | 140 deps = [ |
| 137 ":test_support", | 141 ":test_support", |
| 138 ":unit_tests_bundle_data", | 142 ":unit_tests_bundle_data", |
| 139 ":update_client", | 143 ":update_client", |
| 140 "//base", | 144 "//base", |
| 141 "//components/prefs", | 145 "//components/prefs", |
| 142 "//components/prefs:test_support", | 146 "//components/prefs:test_support", |
| 143 "//courgette:courgette_lib", | 147 "//courgette:courgette_lib", |
| 144 "//net:test_support", | 148 "//net:test_support", |
| 145 "//testing/gmock", | 149 "//testing/gmock", |
| 146 "//testing/gtest", | 150 "//testing/gtest", |
| 147 "//third_party/libxml", | 151 "//third_party/libxml", |
| 148 ] | 152 ] |
| 149 } | 153 } |
| OLD | NEW |