| 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", |
| 24 ] | 26 ] |
| 25 | 27 |
| 26 deps = [ | 28 deps = [ |
| 27 "//base", | 29 "//base", |
| 28 "//components/update_client", | 30 "//components/update_client", |
| 29 "//components/version_info", | 31 "//components/version_info", |
| 30 "//ui/base", | 32 "//ui/base", |
| 31 "//url", | 33 "//url", |
| 32 ] | 34 ] |
| 33 } | 35 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 46 ] | 48 ] |
| 47 } | 49 } |
| 48 | 50 |
| 49 source_set("unit_tests") { | 51 source_set("unit_tests") { |
| 50 testonly = true | 52 testonly = true |
| 51 sources = [ | 53 sources = [ |
| 52 "component_updater_service_unittest.cc", | 54 "component_updater_service_unittest.cc", |
| 53 "configurator_impl_unittest.cc", | 55 "configurator_impl_unittest.cc", |
| 54 "default_component_installer_unittest.cc", | 56 "default_component_installer_unittest.cc", |
| 55 "timer_unittest.cc", | 57 "timer_unittest.cc", |
| 58 "updater_state_unittest_win.cc", |
| 56 ] | 59 ] |
| 57 | 60 |
| 58 deps = [ | 61 deps = [ |
| 59 ":component_updater", | 62 ":component_updater", |
| 60 "//base", | 63 "//base", |
| 61 "//base/test:test_support", | 64 "//base/test:test_support", |
| 62 "//components/update_client:test_support", | 65 "//components/update_client:test_support", |
| 63 "//testing/gmock", | 66 "//testing/gmock", |
| 64 "//testing/gtest", | 67 "//testing/gtest", |
| 65 ] | 68 ] |
| 66 } | 69 } |
| OLD | NEW |