| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |