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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 7726007: Don't build the main executable binaries as Objective-C (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/tools/build/mac/verify_no_objc.sh » ('j') | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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_gtk.cc', 18 'app/chrome_exe_main_gtk.cc',
19 'app/chrome_exe_main_mac.mm', 19 'app/chrome_exe_main_mac.cc',
20 'app/chrome_exe_main_win.cc', 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 # TODO(bradnelson): once automatic generation of 64 bit targets on 27 # TODO(bradnelson): once automatic generation of 64 bit targets on
28 # Windows is ready, take this out and add a dependency on 28 # Windows is ready, take this out and add a dependency on
29 # content_common.gypi. 29 # content_common.gypi.
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 # "More Helpers" share a UUID with the original helper, there's 392 # "More Helpers" share a UUID with the original helper, there's
393 # no need to run dsymutil or dump_syms again. All helpers can 393 # no need to run dsymutil or dump_syms again. All helpers can
394 # share the same .dSYM and Breakpad symbol file. 394 # share the same .dSYM and Breakpad symbol file.
395 'postbuild_name': 'Make More Helpers', 395 'postbuild_name': 'Make More Helpers',
396 'action': [ 396 'action': [
397 'tools/build/mac/make_more_helpers.sh', 397 'tools/build/mac/make_more_helpers.sh',
398 '<(version_full)', 398 '<(version_full)',
399 '<(mac_product_name)', 399 '<(mac_product_name)',
400 ], 400 ],
401 }, 401 },
402 {
403 # Make sure there isn't any Objective-C in the browser app's
404 # executable.
405 'postbuild_name': 'Verify No Objective-C',
406 'action': [
407 'tools/build/mac/verify_no_objc.sh',
408 ],
409 },
402 ], # postbuilds 410 ], # postbuilds
403 }], 411 }],
404 ['OS=="linux"', { 412 ['OS=="linux"', {
405 'conditions': [ 413 'conditions': [
406 ['branding=="Chrome"', { 414 ['branding=="Chrome"', {
407 'dependencies': [ 415 'dependencies': [
408 'linux_installer_configs', 416 'linux_installer_configs',
409 ], 417 ],
410 }], 418 }],
411 ['selinux==0', { 419 ['selinux==0', {
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 'configurations': { 538 'configurations': {
531 'Common_Base': { 539 'Common_Base': {
532 'msvs_target_platform': 'x64', 540 'msvs_target_platform': 'x64',
533 }, 541 },
534 }, 542 },
535 }, 543 },
536 ], 544 ],
537 }], 545 }],
538 ], 546 ],
539 } 547 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/tools/build/mac/verify_no_objc.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698