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