OLD | NEW |
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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 'dependencies': [ | 436 'dependencies': [ |
437 # On Windows and Mac, make sure we've built chrome_dll, which | 437 # On Windows and Mac, make sure we've built chrome_dll, which |
438 # contains all of the library code with Chromium functionality. | 438 # contains all of the library code with Chromium functionality. |
439 'chrome_dll', | 439 'chrome_dll', |
440 ], | 440 ], |
441 }], | 441 }], |
442 ['OS=="win"', { | 442 ['OS=="win"', { |
443 'dependencies': [ | 443 'dependencies': [ |
444 'installer_util', | 444 'installer_util', |
445 'installer_util_strings', | 445 'installer_util_strings', |
| 446 'policy', |
446 '../breakpad/breakpad.gyp:breakpad_handler', | 447 '../breakpad/breakpad.gyp:breakpad_handler', |
447 '../breakpad/breakpad.gyp:breakpad_sender', | 448 '../breakpad/breakpad.gyp:breakpad_sender', |
448 '../sandbox/sandbox.gyp:sandbox', | 449 '../sandbox/sandbox.gyp:sandbox', |
449 'app/locales/locales.gyp:*', | 450 'app/locales/locales.gyp:*', |
450 ], | 451 ], |
451 'msvs_settings': { | 452 'msvs_settings': { |
452 'VCLinkerTool': { | 453 'VCLinkerTool': { |
453 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', | 454 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', |
454 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb', | 455 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb', |
455 }, | 456 }, |
(...skipping 26 matching lines...) Expand all Loading... |
482 'type': 'executable', | 483 'type': 'executable', |
483 'product_name': 'nacl64', | 484 'product_name': 'nacl64', |
484 'msvs_guid': 'BB1AE956-038B-4092-96A2-951D2B418548', | 485 'msvs_guid': 'BB1AE956-038B-4092-96A2-951D2B418548', |
485 'variables': { | 486 'variables': { |
486 'chrome_exe_target': 1, | 487 'chrome_exe_target': 1, |
487 }, | 488 }, |
488 'dependencies': [ | 489 'dependencies': [ |
489 # On Windows make sure we've built Win64 version of chrome_dll, | 490 # On Windows make sure we've built Win64 version of chrome_dll, |
490 # which contains all of the library code with Chromium | 491 # which contains all of the library code with Chromium |
491 # functionality. | 492 # functionality. |
492 'chrome_dll_nacl_win64', | |
493 'installer_util_nacl_win64', | 493 'installer_util_nacl_win64', |
494 'common_constants_win64', | 494 'common_constants_win64', |
| 495 'chrome_dll_nacl_win64', |
| 496 'policy_win64', |
495 '../breakpad/breakpad.gyp:breakpad_handler_win64', | 497 '../breakpad/breakpad.gyp:breakpad_handler_win64', |
496 '../breakpad/breakpad.gyp:breakpad_sender_win64', | 498 '../breakpad/breakpad.gyp:breakpad_sender_win64', |
497 '../base/base.gyp:base_nacl_win64', | 499 '../base/base.gyp:base_nacl_win64', |
498 '../chrome_frame/chrome_frame.gyp:npchrome_frame', | 500 '../chrome_frame/chrome_frame.gyp:npchrome_frame', |
499 '../sandbox/sandbox.gyp:sandbox_win64', | 501 '../sandbox/sandbox.gyp:sandbox_win64', |
500 ], | 502 ], |
501 'defines': [ | 503 'defines': [ |
502 '<@(nacl_win64_defines)', | 504 '<@(nacl_win64_defines)', |
503 ], | 505 ], |
504 'include_dirs': [ | 506 'include_dirs': [ |
505 '<(SHARED_INTERMEDIATE_DIR)/chrome', | 507 '<(SHARED_INTERMEDIATE_DIR)/chrome', |
506 ], | 508 ], |
507 'msvs_settings': { | 509 'msvs_settings': { |
508 'VCLinkerTool': { | 510 'VCLinkerTool': { |
509 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib', | 511 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib', |
510 'ProgramDatabaseFile': '$(OutDir)\\nacl64_exe.pdb', | 512 'ProgramDatabaseFile': '$(OutDir)\\nacl64_exe.pdb', |
511 }, | 513 }, |
512 }, | 514 }, |
513 'configurations': { | 515 'configurations': { |
514 'Common_Base': { | 516 'Common_Base': { |
515 'msvs_target_platform': 'x64', | 517 'msvs_target_platform': 'x64', |
516 }, | 518 }, |
517 }, | 519 }, |
518 }, | 520 }, |
519 ], | 521 ], |
520 }], | 522 }], |
521 ], | 523 ], |
522 } | 524 } |
OLD | NEW |