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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 4719003: Fix location to which osmesa.so gets copied on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | « no previous file | 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': [
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 { 461 {
462 'target_name': 'chrome_mesa', 462 'target_name': 'chrome_mesa',
463 'type': 'none', 463 'type': 'none',
464 'dependencies': [ 464 'dependencies': [
465 'chrome', 465 'chrome',
466 '../third_party/mesa/mesa.gyp:osmesa', 466 '../third_party/mesa/mesa.gyp:osmesa',
467 ], 467 ],
468 'conditions': [ 468 'conditions': [
469 ['OS=="mac"', { 469 ['OS=="mac"', {
470 'copies': [{ 470 'copies': [{
471 'destination': '<(PRODUCT_DIR)/<(branding).app/Contents/Versions/<(v ersion_full)/<(branding) Helper.app/Contents/MacOS/', 471 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/Vers ions/<(version_full)/<(mac_product_name) Helper.app/Contents/MacOS/',
472 'files': ['<(PRODUCT_DIR)/osmesa.so'], 472 'files': ['<(PRODUCT_DIR)/osmesa.so'],
473 }], 473 }],
474 }], 474 }],
475 ], 475 ],
476 }, 476 },
477 ], 477 ],
478 'conditions': [ 478 'conditions': [
479 ['OS=="win"', { 479 ['OS=="win"', {
480 'targets': [ 480 'targets': [
481 { 481 {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 'configurations': { 514 'configurations': {
515 'Common_Base': { 515 'Common_Base': {
516 'msvs_target_platform': 'x64', 516 'msvs_target_platform': 'x64',
517 }, 517 },
518 }, 518 },
519 }, 519 },
520 ], 520 ],
521 }], 521 }],
522 ], 522 ],
523 } 523 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698