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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 4451001: chrome_exe_main: name os-specific files according to naming pattern (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome
Patch Set: Created 10 years, 1 month 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 | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'chrome_exe_target': 0, 8 'chrome_exe_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
11 ['chrome_exe_target==1', { 11 ['chrome_exe_target==1', {
12 'sources': [ 12 'sources': [
13 # .cc, .h, and .mm files under app that are used on all 13 # .cc, .h, and .mm files under app that are used on all
14 # platforms, including both 32-bit and 64-bit Windows. 14 # platforms, including both 32-bit and 64-bit Windows.
15 # Test files are not included. 15 # Test files are not included.
16 'app/breakpad_win.cc', 16 'app/breakpad_win.cc',
17 'app/breakpad_win.h', 17 'app/breakpad_win.h',
18 'app/chrome_exe_main.cc',
19 'app/chrome_exe_main.mm',
20 'app/chrome_exe_main_gtk.cc', 18 'app/chrome_exe_main_gtk.cc',
19 'app/chrome_exe_main_mac.mm',
20 'app/chrome_exe_main_win.cc',
21 'app/chrome_exe_resource.h', 21 'app/chrome_exe_resource.h',
22 'app/client_util.cc', 22 'app/client_util.cc',
23 'app/client_util.h', 23 'app/client_util.h',
24 'app/hard_error_handler_win.cc', 24 'app/hard_error_handler_win.cc',
25 'app/hard_error_handler_win.h', 25 'app/hard_error_handler_win.h',
26 'app/scoped_ole_initializer.h', 26 'app/scoped_ole_initializer.h',
27 ], 27 ],
28 'mac_bundle_resources': [ 28 'mac_bundle_resources': [
29 'app/app-Info.plist', 29 'app/app-Info.plist',
30 ], 30 ],
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 ], 119 ],
120 'outputs': [ 120 'outputs': [
121 '<(PRODUCT_DIR)/First Run', 121 '<(PRODUCT_DIR)/First Run',
122 ], 122 ],
123 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'], 123 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'],
124 'message': 'Copy first run complete sentinel file', 124 'message': 'Copy first run complete sentinel file',
125 }, 125 },
126 ], 126 ],
127 }, { # 'OS!="win" 127 }, { # 'OS!="win"
128 'sources!': [ 128 'sources!': [
129 'app/chrome_exe_main.cc',
130 'app/client_util.cc', 129 'app/client_util.cc',
131 ] 130 ]
132 }], 131 }],
133 ], 132 ],
134 }], 133 }],
135 ], 134 ],
136 }, 135 },
137 'targets': [ 136 'targets': [
138 { 137 {
139 'target_name': 'chrome', 138 'target_name': 'chrome',
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 'message': 584 'message':
586 'Copy the Localizable.strings files to the manifest bundle', 585 'Copy the Localizable.strings files to the manifest bundle',
587 'process_outputs_as_mac_bundle_resources': 1, 586 'process_outputs_as_mac_bundle_resources': 1,
588 }, 587 },
589 ], 588 ],
590 }, 589 },
591 ] 590 ]
592 }] 591 }]
593 ], 592 ],
594 } 593 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698