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

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

Issue 460055: Split installer.gyp and add installer_util_nacl_win64 target.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years 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
« no previous file with comments | « no previous file | chrome/installer/installer_util.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'version_py': '../../chrome/tools/build/version.py', 3 'version_py': '../../chrome/tools/build/version.py',
4 'version_path': '../../chrome/VERSION', 4 'version_path': '../../chrome/VERSION',
5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', 5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE',
6 # 'branding_dir' is set in the 'conditions' section at the bottom. 6 # 'branding_dir' is set in the 'conditions' section at the bottom.
7 }, 7 },
8 'includes': [
9 # Two versions of installer_util target are defined in installer_util.gypi.
10 # This allows to keep all the settings relevant to these targets in one
11 # place.
12 'installer_util.gypi',
13 ],
8 'conditions': [ 14 'conditions': [
9 ['OS=="win"', { 15 ['OS=="win"', {
10 'targets': [ 16 'targets': [
11 { 17 {
12 'target_name': 'installer_util',
13 'type': '<(library)',
14 'msvs_guid': 'EFBB1436-A63F-4CD8-9E99-B89226E782EC',
15 'dependencies': [
16 '../../app/app.gyp:app_id',
17 'installer_util_strings',
18 '../chrome.gyp:common_constants',
19 '../chrome.gyp:chrome_resources',
20 '../chrome.gyp:chrome_strings',
21 '../../courgette/courgette.gyp:courgette_lib',
22 '../../third_party/bspatch/bspatch.gyp:bspatch',
23 '../../third_party/icu/icu.gyp:icui18n',
24 '../../third_party/icu/icu.gyp:icuuc',
25 '../../third_party/libxml/libxml.gyp:libxml',
26 '../../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk',
27 ],
28 'include_dirs': [
29 '../..',
30 ],
31 'sources': [
32 'util/browser_distribution.cc',
33 'util/browser_distribution.h',
34 'util/chrome_frame_distribution.cc',
35 'util/chrome_frame_distribution.h',
36 'util/compat_checks.cc',
37 'util/compat_checks.h',
38 'util/copy_tree_work_item.cc',
39 'util/copy_tree_work_item.h',
40 'util/create_dir_work_item.cc',
41 'util/create_dir_work_item.h',
42 'util/create_reg_key_work_item.cc',
43 'util/create_reg_key_work_item.h',
44 'util/delete_after_reboot_helper.cc',
45 'util/delete_after_reboot_helper.h',
46 'util/delete_reg_value_work_item.cc',
47 'util/delete_reg_value_work_item.h',
48 'util/delete_tree_work_item.cc',
49 'util/delete_tree_work_item.h',
50 'util/google_chrome_distribution.cc',
51 'util/google_chrome_distribution.h',
52 'util/google_update_constants.cc',
53 'util/google_update_constants.h',
54 'util/google_update_settings.cc',
55 'util/google_update_settings.h',
56 'util/helper.cc',
57 'util/helper.h',
58 'util/html_dialog.h',
59 'util/html_dialog_impl.cc',
60 'util/install_util.cc',
61 'util/install_util.h',
62 'util/l10n_string_util.cc',
63 'util/l10n_string_util.h',
64 'util/logging_installer.cc',
65 'util/logging_installer.h',
66 'util/lzma_util.cc',
67 'util/lzma_util.h',
68 'util/master_preferences.cc',
69 'util/master_preferences.h',
70 'util/move_tree_work_item.cc',
71 'util/move_tree_work_item.h',
72 'util/self_reg_work_item.cc',
73 'util/self_reg_work_item.h',
74 'util/set_reg_value_work_item.cc',
75 'util/set_reg_value_work_item.h',
76 'util/shell_util.cc',
77 'util/shell_util.h',
78 'util/util_constants.cc',
79 'util/util_constants.h',
80 'util/version.cc',
81 'util/version.h',
82 'util/work_item.cc',
83 'util/work_item.h',
84 'util/work_item_list.cc',
85 'util/work_item_list.h',
86 ],
87 },
88 {
89 'target_name': 'gcapi_dll', 18 'target_name': 'gcapi_dll',
90 'type': 'loadable_module', 19 'type': 'loadable_module',
91 'msvs_guid': 'B802A2FE-E4E2-4F5A-905A-D5128875C954', 20 'msvs_guid': 'B802A2FE-E4E2-4F5A-905A-D5128875C954',
92 'dependencies': [ 21 'dependencies': [
93 '../../google_update/google_update.gyp:google_update', 22 '../../google_update/google_update.gyp:google_update',
94 ], 23 ],
95 'include_dirs': [ 24 'include_dirs': [
96 '../..', 25 '../..',
97 ], 26 ],
98 'sources': [ 27 'sources': [
(...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after
828 }, 757 },
829 }], 758 }],
830 ], 759 ],
831 } 760 }
832 761
833 # Local Variables: 762 # Local Variables:
834 # tab-width:2 763 # tab-width:2
835 # indent-tabs-mode:nil 764 # indent-tabs-mode:nil
836 # End: 765 # End:
837 # vim: set expandtab tabstop=2 shiftwidth=2: 766 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/installer/installer_util.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698