| 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 'target_defaults': { | 5 'target_defaults': { |
| 6 'variables': { | 6 'variables': { |
| 7 'chrome_dll_target': 0, | 7 'chrome_dll_target': 0, |
| 8 }, | 8 }, |
| 9 'target_conditions': [ | 9 'target_conditions': [ |
| 10 ['chrome_dll_target==1', { | 10 ['chrome_dll_target==1', { |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 # content_common.gypi and common.gypi in nacl_win64_dependencies | 596 # content_common.gypi and common.gypi in nacl_win64_dependencies |
| 597 # and get rid of the common_constants.gypi which was added as a hack | 597 # and get rid of the common_constants.gypi which was added as a hack |
| 598 # to avoid making common compile on 64 bit on Windows. | 598 # to avoid making common compile on 64 bit on Windows. |
| 599 '../chrome/common/chrome_content_client.cc', | 599 '../chrome/common/chrome_content_client.cc', |
| 600 '../content/common/child_process.cc', | 600 '../content/common/child_process.cc', |
| 601 '../content/common/child_thread.cc', | 601 '../content/common/child_thread.cc', |
| 602 '../content/common/content_client.cc', | 602 '../content/common/content_client.cc', |
| 603 '../content/common/content_paths.cc', | 603 '../content/common/content_paths.cc', |
| 604 '../content/common/content_switches.cc', | 604 '../content/common/content_switches.cc', |
| 605 '../content/common/debug_flags.cc', | 605 '../content/common/debug_flags.cc', |
| 606 '../content/common/hi_res_timer_manager_win.cc', |
| 606 '../content/common/notification_details.cc', | 607 '../content/common/notification_details.cc', |
| 607 '../content/common/notification_service.cc', | 608 '../content/common/notification_service.cc', |
| 608 '../content/common/notification_source.cc', | 609 '../content/common/notification_source.cc', |
| 609 '../content/common/sandbox_init_wrapper_win.cc', | 610 '../content/common/sandbox_init_wrapper_win.cc', |
| 610 ], | 611 ], |
| 611 'msvs_settings': { | 612 'msvs_settings': { |
| 612 'VCLinkerTool': { | 613 'VCLinkerTool': { |
| 613 'ImportLibrary': '$(OutDir)\\lib\\nacl64_dll.lib', | 614 'ImportLibrary': '$(OutDir)\\lib\\nacl64_dll.lib', |
| 614 'ProgramDatabaseFile': '$(OutDir)\\nacl64_dll.pdb', | 615 'ProgramDatabaseFile': '$(OutDir)\\nacl64_dll.pdb', |
| 615 }, | 616 }, |
| 616 }, | 617 }, |
| 617 'configurations': { | 618 'configurations': { |
| 618 'Common_Base': { | 619 'Common_Base': { |
| 619 'msvs_target_platform': 'x64', | 620 'msvs_target_platform': 'x64', |
| 620 }, | 621 }, |
| 621 'Debug_Base': { | 622 'Debug_Base': { |
| 622 'msvs_settings': { | 623 'msvs_settings': { |
| 623 'VCLinkerTool': { | 624 'VCLinkerTool': { |
| 624 'LinkIncremental': '<(msvs_debug_link_nonincremental)', | 625 'LinkIncremental': '<(msvs_debug_link_nonincremental)', |
| 625 }, | 626 }, |
| 626 }, | 627 }, |
| 627 }, | 628 }, |
| 628 }, | 629 }, |
| 629 }, # target chrome_dll | 630 }, # target chrome_dll |
| 630 ], | 631 ], |
| 631 }], | 632 }], |
| 632 ], | 633 ], |
| 633 } | 634 } |
| OLD | NEW |