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

Side by Side Diff: chrome/installer/util/util.gyp

Issue 39204: Snapshoting improvements for building with gyp under windows.... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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
(Empty)
1 {
2 'includes': [
3 '../../../build/common.gypi',
4 ],
5 'targets': [
6 {
7 'target_name': 'installer_util',
8 'type': 'static_library',
9 'dependencies': [
10 'prebuild/util_prebuild.gyp:installer_util_prebuild',
11 '../../chrome.gyp:common',
12 '../../chrome.gyp:resources',
13 '../../../net/net.gyp:net_resources',
14 '../../../media/media.gyp:media',
15 '../../../skia/skia.gyp:skia',
16 '../../../third_party/icu38/icu38.gyp:icui18n',
17 '../../../third_party/icu38/icu38.gyp:icuuc',
18 '../../../third_party/libxml/libxml.gyp:libxml',
19 '../../../third_party/npapi/npapi.gyp:npapi',
20 '../../third_party/hunspell/hunspell.gyp:hunspell',
21 ],
22 'include_dirs': [
23 '../../..',
24 # TODO(bradnelson): this should probably come from a using using_lzma
25 # file but I'll put it here for now.
26 '../../../third_party/lzma_sdk',
27 ],
28 'defines': [
29 # TODO(bradnelson): this should probably come from a using using_lzma
30 # file but I'll put it here for now.
31 '_LZMA_IN_CB',
32 ],
33 'sources': [
34 'browser_distribution.cc',
35 'browser_distribution.h',
36 'compat_checks.cc',
37 'compat_checks.h',
38 'copy_tree_work_item.cc',
39 'copy_tree_work_item.h',
40 'create_dir_work_item.cc',
41 'create_dir_work_item.h',
42 'create_reg_key_work_item.cc',
43 'create_reg_key_work_item.h',
44 'delete_reg_value_work_item.cc',
45 'delete_reg_value_work_item.h',
46 'delete_tree_work_item.cc',
47 'delete_tree_work_item.h',
48 'google_chrome_distribution.cc',
49 'google_chrome_distribution.h',
50 'google_update_constants.cc',
51 'google_update_constants.h',
52 'google_update_settings.cc',
53 'google_update_settings.h',
54 'helper.cc',
55 'helper.h',
56 'html_dialog.h',
57 'html_dialog_impl.cc',
58 'install_util.cc',
59 'install_util.h',
60 'l10n_string_util.cc',
61 'l10n_string_util.h',
62 'logging_installer.cc',
63 'logging_installer.h',
64 'lzma_util.cc',
65 'lzma_util.h',
66 'master_preferences.cc',
67 'master_preferences.h',
68 'set_reg_value_work_item.cc',
69 'set_reg_value_work_item.h',
70 'shell_util.cc',
71 'shell_util.h',
72 'util_constants.cc',
73 'util_constants.h',
74 'version.cc',
75 'version.h',
76 'work_item.cc',
77 'work_item.h',
78 'work_item_list.cc',
79 'work_item_list.h',
80 ],
81 },
82 ],
83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698