| 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("component_updater") { | 5 source_set("component_updater") { |
| 6 sources = [ | 6 sources = [ |
| 7 "background_downloader_win.cc", | 7 "background_downloader_win.cc", |
| 8 "background_downloader_win.h", | 8 "background_downloader_win.h", |
| 9 "component_patcher.cc", | 9 "component_patcher.cc", |
| 10 "component_patcher.h", | 10 "component_patcher.h", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "component_updater_switches.h", | 23 "component_updater_switches.h", |
| 24 "component_updater_utils.cc", | 24 "component_updater_utils.cc", |
| 25 "component_updater_utils.h", | 25 "component_updater_utils.h", |
| 26 "crx_update_item.h", | 26 "crx_update_item.h", |
| 27 "crx_downloader.cc", | 27 "crx_downloader.cc", |
| 28 "crx_downloader.h", | 28 "crx_downloader.h", |
| 29 "default_component_installer.cc", | 29 "default_component_installer.cc", |
| 30 "default_component_installer.h", | 30 "default_component_installer.h", |
| 31 "pref_names.cc", | 31 "pref_names.cc", |
| 32 "pref_names.h", | 32 "pref_names.h", |
| 33 "request_sender.cc", |
| 34 "request_sender.h", |
| 33 "update_checker.cc", | 35 "update_checker.cc", |
| 34 "update_checker.h", | 36 "update_checker.h", |
| 35 "update_response.cc", | 37 "update_response.cc", |
| 36 "update_response.h", | 38 "update_response.h", |
| 37 "url_fetcher_downloader.cc", | 39 "url_fetcher_downloader.cc", |
| 38 "url_fetcher_downloader.h", | 40 "url_fetcher_downloader.h", |
| 39 ] | 41 ] |
| 40 | 42 |
| 41 deps = [ | 43 deps = [ |
| 42 "//base", | 44 "//base", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 68 "//testing/gmock", | 70 "//testing/gmock", |
| 69 ] | 71 ] |
| 70 } | 72 } |
| 71 | 73 |
| 72 source_set("unit_tests") { | 74 source_set("unit_tests") { |
| 73 testonly = true | 75 testonly = true |
| 74 sources = [ | 76 sources = [ |
| 75 "test/component_patcher_unittest.cc", | 77 "test/component_patcher_unittest.cc", |
| 76 "test/component_updater_ping_manager_unittest.cc", | 78 "test/component_updater_ping_manager_unittest.cc", |
| 77 "test/crx_downloader_unittest.cc", | 79 "test/crx_downloader_unittest.cc", |
| 80 "test/request_sender_unittest.cc", |
| 78 "test/update_checker_unittest.cc", | 81 "test/update_checker_unittest.cc", |
| 79 "test/update_response_unittest.cc", | 82 "test/update_response_unittest.cc", |
| 80 ] | 83 ] |
| 81 | 84 |
| 82 deps = [ | 85 deps = [ |
| 83 ":component_updater", | 86 ":component_updater", |
| 84 ":test_support", | 87 ":test_support", |
| 85 "//testing/gtest", | 88 "//testing/gtest", |
| 86 "//testing/gmock", | 89 "//testing/gmock", |
| 87 "//third_party/libxml", | 90 "//third_party/libxml", |
| 88 ] | 91 ] |
| 89 } | 92 } |
| OLD | NEW |