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 '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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 ], | 488 ], |
489 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'], | 489 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'], |
490 'message': 'Copy first run complete sentinel file', | 490 'message': 'Copy first run complete sentinel file', |
491 }, | 491 }, |
492 ], | 492 ], |
493 }, { # 'OS!="win" | 493 }, { # 'OS!="win" |
494 'sources!': [ | 494 'sources!': [ |
495 'app/client_util.cc', | 495 'app/client_util.cc', |
496 ], | 496 ], |
497 }], | 497 }], |
498 ['OS=="win" and component=="shared_library"', { | |
499 'defines': ['COMPILE_CONTENT_STATICALLY'], | |
500 }] | |
501 ], | 498 ], |
502 }, | 499 }, |
503 ], | 500 ], |
504 'conditions': [ | 501 'conditions': [ |
505 ['OS=="win"', { | 502 ['OS=="win"', { |
506 'targets': [ | 503 'targets': [ |
507 { | 504 { |
508 'target_name': 'chrome_nacl_win64', | 505 'target_name': 'chrome_nacl_win64', |
509 'type': 'executable', | 506 'type': 'executable', |
510 'product_name': 'nacl64', | 507 'product_name': 'nacl64', |
(...skipping 19 matching lines...) Expand all Loading... |
530 '../breakpad/breakpad.gyp:breakpad_sender_win64', | 527 '../breakpad/breakpad.gyp:breakpad_sender_win64', |
531 '../base/base.gyp:base_i18n_nacl_win64', | 528 '../base/base.gyp:base_i18n_nacl_win64', |
532 '../base/base.gyp:base_nacl_win64', | 529 '../base/base.gyp:base_nacl_win64', |
533 '../base/base.gyp:base_static_win64', | 530 '../base/base.gyp:base_static_win64', |
534 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations_win64', | 531 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations_win64', |
535 '../ipc/ipc.gyp:ipc_win64', | 532 '../ipc/ipc.gyp:ipc_win64', |
536 '../sandbox/sandbox.gyp:sandbox_win64', | 533 '../sandbox/sandbox.gyp:sandbox_win64', |
537 ], | 534 ], |
538 'defines': [ | 535 'defines': [ |
539 '<@(nacl_win64_defines)', | 536 '<@(nacl_win64_defines)', |
540 'COMPILE_CONTENT_STATICALLY', | |
541 ], | 537 ], |
542 'include_dirs': [ | 538 'include_dirs': [ |
543 '<(SHARED_INTERMEDIATE_DIR)/chrome', | 539 '<(SHARED_INTERMEDIATE_DIR)/chrome', |
544 ], | 540 ], |
545 'msvs_settings': { | 541 'msvs_settings': { |
546 'VCLinkerTool': { | 542 'VCLinkerTool': { |
547 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib', | 543 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib', |
548 'ProgramDatabaseFile': '$(OutDir)\\nacl64_exe.pdb', | 544 'ProgramDatabaseFile': '$(OutDir)\\nacl64_exe.pdb', |
549 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 545 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
550 }, | 546 }, |
551 }, | 547 }, |
552 'configurations': { | 548 'configurations': { |
553 'Common_Base': { | 549 'Common_Base': { |
554 'msvs_target_platform': 'x64', | 550 'msvs_target_platform': 'x64', |
555 }, | 551 }, |
556 }, | 552 }, |
557 }, | 553 }, |
558 ], | 554 ], |
559 }], | 555 }], |
560 ], | 556 ], |
561 } | 557 } |
OLD | NEW |