| 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 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 ] | 24 ] |
| 25 | 25 |
| 26 deps = [ | 26 deps = [ |
| 27 "//base", | 27 "//base", |
| 28 "//components/update_client", | 28 "//components/update_client", |
| 29 "//components/version_info", | 29 "//components/version_info", |
| 30 "//ui/base", | 30 "//ui/base", |
| 31 "//url", | 31 "//url", |
| 32 ] | 32 ] |
| 33 } | 33 } |
| 34 | 34 |
| 35 source_set("test_support") { | 35 static_library("test_support") { |
| 36 testonly = true | 36 testonly = true |
| 37 sources = [ | 37 sources = [ |
| 38 "mock_component_updater_service.cc", | 38 "mock_component_updater_service.cc", |
| 39 "mock_component_updater_service.h", | 39 "mock_component_updater_service.h", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 public_deps = [ | 42 public_deps = [ |
| 43 ":component_updater", | 43 ":component_updater", |
| 44 "//base", | 44 "//base", |
| 45 "//testing/gmock", | 45 "//testing/gmock", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 56 | 56 |
| 57 deps = [ | 57 deps = [ |
| 58 ":component_updater", | 58 ":component_updater", |
| 59 "//base", | 59 "//base", |
| 60 "//base/test:test_support", | 60 "//base/test:test_support", |
| 61 "//components/update_client:test_support", | 61 "//components/update_client:test_support", |
| 62 "//testing/gmock", | 62 "//testing/gmock", |
| 63 "//testing/gtest", | 63 "//testing/gtest", |
| 64 ] | 64 ] |
| 65 } | 65 } |
| OLD | NEW |