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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 7992013: Merge 100031 - Modify the build recipe for nacl_helper_bootstrap to invoke the linker explicitly ... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/874/src/
Patch Set: Created 9 years, 3 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 | « no previous file | chrome/nacl.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 # 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': [
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 ], 445 ],
446 'dependencies': [ 446 'dependencies': [
447 'packed_extra_resources', 447 'packed_extra_resources',
448 'packed_resources', 448 'packed_resources',
449 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp 449 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp
450 # file decide what to do on a per-OS basis; on Mac, internal plugins 450 # file decide what to do on a per-OS basis; on Mac, internal plugins
451 # go inside the framework, so this dependency is in chrome_dll.gypi. 451 # go inside the framework, so this dependency is in chrome_dll.gypi.
452 '../third_party/adobe/flash/flash_player.gyp:flash_player', 452 '../third_party/adobe/flash/flash_player.gyp:flash_player',
453 ], 453 ],
454 }], 454 }],
455 ['OS=="linux"', {
456 'conditions': [
457 # For now, do not build nacl_helper on ARM or when disable_nacl=1
458 ['disable_nacl!=1 and target_arch!="arm"', {
459 'dependencies': [
460 'nacl_helper_bootstrap',
461 'nacl_helper',
462 ],
463 }],
464 ],
465 }],
455 ['OS=="mac"', { 466 ['OS=="mac"', {
456 'dependencies': [ 467 'dependencies': [
457 # On Mac, make sure we've built chrome_dll, which contains all of 468 # On Mac, make sure we've built chrome_dll, which contains all of
458 # the library code with Chromium functionality. 469 # the library code with Chromium functionality.
459 'chrome_dll', 470 'chrome_dll',
460 ], 471 ],
461 }], 472 }],
462 ['OS=="win"', { 473 ['OS=="win"', {
463 'conditions': [ 474 'conditions': [
464 ['optimize_with_syzygy==1', { 475 ['optimize_with_syzygy==1', {
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 'configurations': { 552 'configurations': {
542 'Common_Base': { 553 'Common_Base': {
543 'msvs_target_platform': 'x64', 554 'msvs_target_platform': 'x64',
544 }, 555 },
545 }, 556 },
546 }, 557 },
547 ], 558 ],
548 }], 559 }],
549 ], 560 ],
550 } 561 }
OLDNEW
« no previous file with comments | « no previous file | chrome/nacl.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698