Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(310)

Side by Side Diff: components/component_updater.gypi

Issue 1281913002: Componentize ComponentUpdaterConfigurator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix iOS compile Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/component_updater 8 # GN version: //components/component_updater
9 'target_name': 'component_updater', 9 'target_name': 'component_updater',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../ui/base/ui_base.gyp:ui_base', 13 '../ui/base/ui_base.gyp:ui_base',
14 '../url/url.gyp:url_lib', 14 '../url/url.gyp:url_lib',
15 'update_client', 15 'update_client',
16 'version_info',
16 ], 17 ],
17 'include_dirs': [ 18 'include_dirs': [
18 '..', 19 '..',
19 ], 20 ],
20 'sources': [ 21 'sources': [
21 'component_updater/component_updater_paths.cc', 22 'component_updater/component_updater_paths.cc',
22 'component_updater/component_updater_paths.h', 23 'component_updater/component_updater_paths.h',
23 'component_updater/component_updater_service.cc', 24 'component_updater/component_updater_service.cc',
24 'component_updater/component_updater_service.h', 25 'component_updater/component_updater_service.h',
25 'component_updater/component_updater_service_internal.h', 26 'component_updater/component_updater_service_internal.h',
26 'component_updater/component_updater_switches.cc', 27 'component_updater/component_updater_switches.cc',
27 'component_updater/component_updater_switches.h', 28 'component_updater/component_updater_switches.h',
29 'component_updater/component_updater_url_constants.cc',
30 'component_updater/component_updater_url_constants.h',
31 'component_updater/configurator_impl.cc',
32 'component_updater/configurator_impl.h',
28 'component_updater/default_component_installer.cc', 33 'component_updater/default_component_installer.cc',
29 'component_updater/default_component_installer.h', 34 'component_updater/default_component_installer.h',
30 'component_updater/pref_names.cc', 35 'component_updater/pref_names.cc',
31 'component_updater/pref_names.h', 36 'component_updater/pref_names.h',
32 'component_updater/timer.cc', 37 'component_updater/timer.cc',
33 'component_updater/timer.h', 38 'component_updater/timer.h',
34 ], 39 ],
35 }, 40 },
36 ], 41 ],
37 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698