| 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", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 ":component_updater", | 43 ":component_updater", |
| 44 "//base", | 44 "//base", |
| 45 "//testing/gmock", | 45 "//testing/gmock", |
| 46 ] | 46 ] |
| 47 } | 47 } |
| 48 | 48 |
| 49 source_set("unit_tests") { | 49 source_set("unit_tests") { |
| 50 testonly = true | 50 testonly = true |
| 51 sources = [ | 51 sources = [ |
| 52 "component_updater_service_unittest.cc", | 52 "component_updater_service_unittest.cc", |
| 53 "configurator_impl_unittest.cc", |
| 53 "default_component_installer_unittest.cc", | 54 "default_component_installer_unittest.cc", |
| 54 "timer_unittest.cc", | 55 "timer_unittest.cc", |
| 55 ] | 56 ] |
| 56 | 57 |
| 57 deps = [ | 58 deps = [ |
| 58 ":component_updater", | 59 ":component_updater", |
| 59 "//base", | 60 "//base", |
| 60 "//base/test:test_support", | 61 "//base/test:test_support", |
| 61 "//components/update_client:test_support", | 62 "//components/update_client:test_support", |
| 62 "//testing/gmock", | 63 "//testing/gmock", |
| 63 "//testing/gtest", | 64 "//testing/gtest", |
| 64 ] | 65 ] |
| 65 } | 66 } |
| OLD | NEW |