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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 9656002: Make helper app, get closer to working content shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 8 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 | Annotate | Revision Log
« no previous file with comments | « build/mac/make_more_helpers.sh ('k') | chrome/tools/build/mac/dump_product_syms » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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': 'chrome', 8 'target_name': 'chrome',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle': 1, 10 'mac_bundle': 1,
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 # to the original helper except for the bits in their Mach-O 354 # to the original helper except for the bits in their Mach-O
355 # headers that change to enable or disable special features. 355 # headers that change to enable or disable special features.
356 # Each .dSYM is identified by UUID stored in a Mach-O file's 356 # Each .dSYM is identified by UUID stored in a Mach-O file's
357 # LC_UUID load command. Because the "More Helpers" share a UUID 357 # LC_UUID load command. Because the "More Helpers" share a UUID
358 # with the original helper, there's no need to run dsymutil 358 # with the original helper, there's no need to run dsymutil
359 # again. All helpers can share the same .dSYM. Special handling 359 # again. All helpers can share the same .dSYM. Special handling
360 # is performed in chrome/tools/build/mac/dump_product_syms to 360 # is performed in chrome/tools/build/mac/dump_product_syms to
361 # prepare their Breakpad symbol files. 361 # prepare their Breakpad symbol files.
362 'postbuild_name': 'Make More Helpers', 362 'postbuild_name': 'Make More Helpers',
363 'action': [ 363 'action': [
364 'tools/build/mac/make_more_helpers.sh', 364 '../build/mac/make_more_helpers.sh',
365 '<(version_full)', 365 'Versions/<(version_full)',
366 '<(mac_product_name)', 366 '<(mac_product_name)',
367 ], 367 ],
368 }, 368 },
369 { 369 {
370 # Make sure there isn't any Objective-C in the browser app's 370 # Make sure there isn't any Objective-C in the browser app's
371 # executable. 371 # executable.
372 'postbuild_name': 'Verify No Objective-C', 372 'postbuild_name': 'Verify No Objective-C',
373 'action': [ 373 'action': [
374 '../build/mac/verify_no_objc.sh', 374 '../build/mac/verify_no_objc.sh',
375 ], 375 ],
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 'configurations': { 552 'configurations': {
553 'Common_Base': { 553 'Common_Base': {
554 'msvs_target_platform': 'x64', 554 'msvs_target_platform': 'x64',
555 }, 555 },
556 }, 556 },
557 }, 557 },
558 ], 558 ],
559 }], 559 }],
560 ], 560 ],
561 } 561 }
OLDNEW
« no previous file with comments | « build/mac/make_more_helpers.sh ('k') | chrome/tools/build/mac/dump_product_syms » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698