| 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 "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 "configurator_impl.cc", |
| 15 "configurator_impl.h", |
| 14 "default_component_installer.cc", | 16 "default_component_installer.cc", |
| 15 "default_component_installer.h", | 17 "default_component_installer.h", |
| 16 "pref_names.cc", | 18 "pref_names.cc", |
| 17 "pref_names.h", | 19 "pref_names.h", |
| 18 "timer.cc", | 20 "timer.cc", |
| 19 "timer.h", | 21 "timer.h", |
| 20 ] | 22 ] |
| 21 | 23 |
| 22 deps = [ | 24 deps = [ |
| 23 "//base", | 25 "//base", |
| 24 "//components/update_client", | 26 "//components/update_client", |
| 27 "//components/version_info", |
| 25 "//ui/base", | 28 "//ui/base", |
| 26 "//url", | 29 "//url", |
| 27 ] | 30 ] |
| 28 } | 31 } |
| 29 | 32 |
| 30 source_set("unit_tests") { | 33 source_set("unit_tests") { |
| 31 testonly = true | 34 testonly = true |
| 32 sources = [ | 35 sources = [ |
| 33 "component_updater_service_unittest.cc", | 36 "component_updater_service_unittest.cc", |
| 34 "timer_unittest.cc", | 37 "timer_unittest.cc", |
| 35 ] | 38 ] |
| 36 | 39 |
| 37 deps = [ | 40 deps = [ |
| 38 ":component_updater", | 41 ":component_updater", |
| 39 "//base", | 42 "//base", |
| 40 "//testing/gtest", | 43 "//testing/gtest", |
| 41 "//testing/gmock", | 44 "//testing/gmock", |
| 42 ] | 45 ] |
| 43 } | 46 } |
| OLD | NEW |