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_configurator.h", | |
8 "component_updater_paths.cc", | 7 "component_updater_paths.cc", |
9 "component_updater_paths.h", | 8 "component_updater_paths.h", |
10 "component_updater_service.cc", | 9 "component_updater_service.cc", |
11 "component_updater_service.h", | 10 "component_updater_service.h", |
12 "component_updater_switches.cc", | 11 "component_updater_switches.cc", |
13 "component_updater_switches.h", | 12 "component_updater_switches.h", |
14 "default_component_installer.cc", | 13 "default_component_installer.cc", |
15 "default_component_installer.h", | 14 "default_component_installer.h", |
16 "pref_names.cc", | 15 "pref_names.cc", |
17 "pref_names.h", | 16 "pref_names.h", |
18 ] | 17 ] |
19 | 18 |
20 deps = [ | 19 deps = [ |
21 "//base", | 20 "//base", |
22 "//components/update_client", | 21 "//components/update_client", |
23 "//ui/base", | 22 "//ui/base", |
24 "//url", | 23 "//url", |
25 ] | 24 ] |
26 } | 25 } |
OLD | NEW |