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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 8352025: Move the definition of disable_nacl% inside a conditional (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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/common.gypi ('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) 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 '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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 'packed_extra_resources', 403 'packed_extra_resources',
404 'packed_resources', 404 'packed_resources',
405 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp 405 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp
406 # file decide what to do on a per-OS basis; on Mac, internal plugins 406 # file decide what to do on a per-OS basis; on Mac, internal plugins
407 # go inside the framework, so this dependency is in chrome_dll.gypi. 407 # go inside the framework, so this dependency is in chrome_dll.gypi.
408 '../third_party/adobe/flash/flash_player.gyp:flash_player', 408 '../third_party/adobe/flash/flash_player.gyp:flash_player',
409 ], 409 ],
410 }], 410 }],
411 ['OS=="linux"', { 411 ['OS=="linux"', {
412 'conditions': [ 412 'conditions': [
413 # For now, do not build nacl_helper on ARM or when disable_nacl=1 413 # For now, do not build nacl_helper when disable_nacl=1
414 ['disable_nacl!=1 and target_arch!="arm"', { 414 ['disable_nacl!=1', {
415 'dependencies': [ 415 'dependencies': [
416 'nacl_helper_bootstrap', 416 'nacl_helper_bootstrap',
417 'nacl_helper', 417 'nacl_helper',
418 ], 418 ],
419 }], 419 }],
420 ], 420 ],
421 }], 421 }],
422 ['OS=="mac"', { 422 ['OS=="mac"', {
423 'dependencies': [ 423 'dependencies': [
424 # On Mac, make sure we've built chrome_dll, which contains all of 424 # On Mac, make sure we've built chrome_dll, which contains all of
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 'configurations': { 548 'configurations': {
549 'Common_Base': { 549 'Common_Base': {
550 'msvs_target_platform': 'x64', 550 'msvs_target_platform': 'x64',
551 }, 551 },
552 }, 552 },
553 }, 553 },
554 ], 554 ],
555 }], 555 }],
556 ], 556 ],
557 } 557 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698