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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 7019041: Fix up PathProvider on the Mac for FILE_MODULE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Search for osmesa in build dir, and get rid of copies. Created 9 years, 7 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
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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 ], 467 ],
468 'msvs_settings': { 468 'msvs_settings': {
469 'VCLinkerTool': { 469 'VCLinkerTool': {
470 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', 470 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib',
471 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb', 471 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb',
472 }, 472 },
473 }, 473 },
474 }], 474 }],
475 ], 475 ],
476 }, 476 },
477 {
478 'target_name': 'chrome_mesa',
479 'type': 'none',
480 'dependencies': [
481 'chrome',
482 '../third_party/mesa/mesa.gyp:osmesa',
483 ],
484 'conditions': [
485 ['OS=="mac"', {
486 'copies': [{
487 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/Vers ions/<(version_full)/<(mac_product_name) Helper.app/Contents/MacOS/',
488 'files': ['<(PRODUCT_DIR)/osmesa.so'],
489 }],
490 }],
491 ],
492 },
493 ], 477 ],
494 'conditions': [ 478 'conditions': [
495 ['OS=="win"', { 479 ['OS=="win"', {
496 'targets': [ 480 'targets': [
497 { 481 {
498 'target_name': 'chrome_nacl_win64', 482 'target_name': 'chrome_nacl_win64',
499 'type': 'executable', 483 'type': 'executable',
500 'product_name': 'nacl64', 484 'product_name': 'nacl64',
501 'msvs_guid': 'BB1AE956-038B-4092-96A2-951D2B418548', 485 'msvs_guid': 'BB1AE956-038B-4092-96A2-951D2B418548',
502 'variables': { 486 'variables': {
(...skipping 27 matching lines...) Expand all
530 'configurations': { 514 'configurations': {
531 'Common_Base': { 515 'Common_Base': {
532 'msvs_target_platform': 'x64', 516 'msvs_target_platform': 'x64',
533 }, 517 },
534 }, 518 },
535 }, 519 },
536 ], 520 ],
537 }], 521 }],
538 ], 522 ],
539 } 523 }
OLDNEW
« base/base_paths_mac.mm ('K') | « base/base_paths_mac.mm ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698