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

Side by Side Diff: chrome/chrome.gyp

Issue 7541057: Breakpad: Build an x86-64 version of crash_service.exe on Windows (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 1587 matching lines...) Expand 10 before | Expand all | Expand 10 after
1598 'tools/crash_service/crash_service.cc', 1598 'tools/crash_service/crash_service.cc',
1599 'tools/crash_service/crash_service.h', 1599 'tools/crash_service/crash_service.h',
1600 'tools/crash_service/main.cc', 1600 'tools/crash_service/main.cc',
1601 ], 1601 ],
1602 'msvs_settings': { 1602 'msvs_settings': {
1603 'VCLinkerTool': { 1603 'VCLinkerTool': {
1604 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 1604 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
1605 }, 1605 },
1606 }, 1606 },
1607 }, 1607 },
1608 {
1609 'target_name': 'crash_service_win64',
1610 'type': 'executable',
1611 'product_name': 'crash_service64',
1612 'dependencies': [
1613 'app/policy/cloud_policy_codegen.gyp:policy_win64',
1614 'common_constants_win64',
1615 'installer_util_nacl_win64',
1616 '../base/base.gyp:base_static_win64',
1617 '../breakpad/breakpad.gyp:breakpad_handler_win64',
1618 '../breakpad/breakpad.gyp:breakpad_sender_win64',
1619 ],
1620 'include_dirs': [
1621 '..',
1622 ],
1623 'sources': [
1624 'tools/crash_service/crash_service.cc',
1625 'tools/crash_service/crash_service.h',
1626 'tools/crash_service/main.cc',
1627 ],
1628 'msvs_settings': {
1629 'VCLinkerTool': {
1630 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
1631 },
1632 },
1633 'configurations': {
1634 'Common_Base': {
1635 'msvs_target_platform': 'x64',
1636 },
1637 },
1638 },
1608 ]}, # 'targets' 1639 ]}, # 'targets'
1609 ], # OS=="win" 1640 ], # OS=="win"
1610 ['os_posix == 1 and OS != "mac"', { 1641 ['os_posix == 1 and OS != "mac"', {
1611 'targets': [{ 1642 'targets': [{
1612 'target_name': 'packed_resources', 1643 'target_name': 'packed_resources',
1613 'type': 'none', 1644 'type': 'none',
1614 'variables': { 1645 'variables': {
1615 'repack_path': '../tools/data_pack/repack.py', 1646 'repack_path': '../tools/data_pack/repack.py',
1616 }, 1647 },
1617 'actions': [ 1648 'actions': [
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
1704 'destination': '<(PRODUCT_DIR)', 1735 'destination': '<(PRODUCT_DIR)',
1705 'files': [ 1736 'files': [
1706 '<(INTERMEDIATE_DIR)/repack/chrome.pak' 1737 '<(INTERMEDIATE_DIR)/repack/chrome.pak'
1707 ], 1738 ],
1708 }, 1739 },
1709 ], 1740 ],
1710 }], # targets 1741 }], # targets
1711 }], # os_posix == 1 and OS != "mac" 1742 }], # os_posix == 1 and OS != "mac"
1712 ], # 'conditions' 1743 ], # 'conditions'
1713 } 1744 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698