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

Side by Side Diff: components/component_updater.gypi

Issue 449643002: Componentize component_updater: Move over a bunch of files to the component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add more checked casts Created 6 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 | Annotate | Revision Log
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 'target_name': 'component_updater', 8 'target_name': 'component_updater',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 '../base/base.gyp:base', 11 '../base/base.gyp:base',
12 '../courgette/courgette.gyp:courgette_lib',
13 '../third_party/libxml/libxml.gyp:libxml',
12 ], 14 ],
13 'include_dirs': [ 15 'include_dirs': [
14 '..', 16 '..',
15 ], 17 ],
16 'sources': [ 18 'sources': [
19 'component_updater/background_downloader_win.cc',
20 'component_updater/background_downloader_win.h',
21 'component_updater/component_patcher.cc',
22 'component_updater/component_patcher.h',
23 'component_updater/component_patcher_operation.cc',
24 'component_updater/component_patcher_operation.h',
25 'component_updater/component_updater_configurator.h',
26 'component_updater/component_unpacker.cc',
27 'component_updater/component_unpacker.h',
17 'component_updater/component_updater_paths.cc', 28 'component_updater/component_updater_paths.cc',
18 'component_updater/component_updater_paths.h', 29 'component_updater/component_updater_paths.h',
30 'component_updater/component_updater_ping_manager.cc',
31 'component_updater/component_updater_ping_manager.h',
32 'component_updater/component_updater_service.cc',
33 'component_updater/component_updater_service.h',
19 'component_updater/component_updater_switches.cc', 34 'component_updater/component_updater_switches.cc',
20 'component_updater/component_updater_switches.h', 35 'component_updater/component_updater_switches.h',
36 'component_updater/component_updater_utils.cc',
37 'component_updater/component_updater_utils.h',
38 'component_updater/crx_update_item.h',
39 'component_updater/crx_downloader.cc',
40 'component_updater/crx_downloader.h',
41 'component_updater/default_component_installer.cc',
42 'component_updater/default_component_installer.h',
21 'component_updater/pref_names.cc', 43 'component_updater/pref_names.cc',
22 'component_updater/pref_names.h', 44 'component_updater/pref_names.h',
45 'component_updater/update_checker.cc',
46 'component_updater/update_checker.h',
47 'component_updater/update_response.cc',
48 'component_updater/update_response.h',
49 'component_updater/url_fetcher_downloader.cc',
50 'component_updater/url_fetcher_downloader.h',
23 ], 51 ],
24 }, 52 },
25 ], 53 ],
26 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698