| 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 static_library("component_updater") { | 5 static_library("component_updater") { |
| 6 sources = [ | 6 sources = [ |
| 7 "component_updater_paths.cc", | 7 "component_updater_paths.cc", |
| 8 "component_updater_paths.h", | 8 "component_updater_paths.h", |
| 9 "component_updater_service.cc", | 9 "component_updater_service.cc", |
| 10 "component_updater_service.h", | 10 "component_updater_service.h", |
| 11 "component_updater_service_internal.h", | 11 "component_updater_service_internal.h", |
| 12 "component_updater_switches.cc", | 12 "component_updater_switches.cc", |
| 13 "component_updater_switches.h", | 13 "component_updater_switches.h", |
| 14 "component_updater_url_constants.cc", | 14 "component_updater_url_constants.cc", |
| 15 "component_updater_url_constants.h", | 15 "component_updater_url_constants.h", |
| 16 "configurator_impl.cc", | 16 "configurator_impl.cc", |
| 17 "configurator_impl.h", | 17 "configurator_impl.h", |
| 18 "default_component_installer.cc", | 18 "default_component_installer.cc", |
| 19 "default_component_installer.h", | 19 "default_component_installer.h", |
| 20 "pref_names.cc", | 20 "pref_names.cc", |
| 21 "pref_names.h", | 21 "pref_names.h", |
| 22 "timer.cc", | 22 "timer.cc", |
| 23 "timer.h", | 23 "timer.h", |
| 24 "updater_state_win.cc", | |
| 25 "updater_state_win.h", | |
| 26 ] | 24 ] |
| 27 | 25 |
| 28 deps = [ | 26 deps = [ |
| 29 "//base", | 27 "//base", |
| 30 "//components/update_client", | 28 "//components/update_client", |
| 31 "//components/version_info", | 29 "//components/version_info", |
| 32 "//ui/base", | 30 "//ui/base", |
| 33 "//url", | 31 "//url", |
| 34 ] | 32 ] |
| 35 } | 33 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 48 ] | 46 ] |
| 49 } | 47 } |
| 50 | 48 |
| 51 source_set("unit_tests") { | 49 source_set("unit_tests") { |
| 52 testonly = true | 50 testonly = true |
| 53 sources = [ | 51 sources = [ |
| 54 "component_updater_service_unittest.cc", | 52 "component_updater_service_unittest.cc", |
| 55 "configurator_impl_unittest.cc", | 53 "configurator_impl_unittest.cc", |
| 56 "default_component_installer_unittest.cc", | 54 "default_component_installer_unittest.cc", |
| 57 "timer_unittest.cc", | 55 "timer_unittest.cc", |
| 58 "updater_state_unittest_win.cc", | |
| 59 ] | 56 ] |
| 60 | 57 |
| 61 deps = [ | 58 deps = [ |
| 62 ":component_updater", | 59 ":component_updater", |
| 63 "//base", | 60 "//base", |
| 64 "//base/test:test_support", | 61 "//base/test:test_support", |
| 65 "//components/update_client:test_support", | 62 "//components/update_client:test_support", |
| 66 "//testing/gmock", | 63 "//testing/gmock", |
| 67 "//testing/gtest", | 64 "//testing/gtest", |
| 68 ] | 65 ] |
| 69 } | 66 } |
| OLD | NEW |