| 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 '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 18 matching lines...) Expand all Loading... |
| 29 'syncapi_core', | 29 'syncapi_core', |
| 30 'utility', | 30 'utility', |
| 31 'service', | 31 'service', |
| 32 '../content/content.gyp:content_app', | 32 '../content/content.gyp:content_app', |
| 33 '../content/content.gyp:content_gpu', | 33 '../content/content.gyp:content_gpu', |
| 34 '../content/content.gyp:content_ppapi_plugin', | 34 '../content/content.gyp:content_ppapi_plugin', |
| 35 '../content/content.gyp:content_worker', | 35 '../content/content.gyp:content_worker', |
| 36 '../printing/printing.gyp:printing', | 36 '../printing/printing.gyp:printing', |
| 37 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:inspector_resourc
es', | 37 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:inspector_resourc
es', |
| 38 ], | 38 ], |
| 39 'nacl_win64_dependencies': [ | |
| 40 'common_nacl_win64', | |
| 41 'common_constants_win64', | |
| 42 'installer_util_nacl_win64', | |
| 43 '../base/base.gyp:base_static_win64', | |
| 44 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_a
nnotations_win64', | |
| 45 ], | |
| 46 'allocator_target': '../base/allocator/allocator.gyp:allocator', | 39 'allocator_target': '../base/allocator/allocator.gyp:allocator', |
| 47 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 40 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 48 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 41 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
| 49 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 42 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
| 50 # TODO: remove this helper when we have loops in GYP | 43 # TODO: remove this helper when we have loops in GYP |
| 51 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], | 44 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], |
| 52 'conditions': [ | 45 'conditions': [ |
| 53 ['OS=="win"', { | 46 ['OS=="win"', { |
| 54 'nacl_defines': [ | 47 'nacl_defines': [ |
| 55 'NACL_WINDOWS=1', | 48 'NACL_WINDOWS=1', |
| (...skipping 1492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1548 'VCLinkerTool': { | 1541 'VCLinkerTool': { |
| 1549 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 1542 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 1550 }, | 1543 }, |
| 1551 }, | 1544 }, |
| 1552 }, | 1545 }, |
| 1553 { | 1546 { |
| 1554 'target_name': 'crash_service_win64', | 1547 'target_name': 'crash_service_win64', |
| 1555 'type': 'executable', | 1548 'type': 'executable', |
| 1556 'product_name': 'crash_service64', | 1549 'product_name': 'crash_service64', |
| 1557 'dependencies': [ | 1550 'dependencies': [ |
| 1558 'app/policy/cloud_policy_codegen.gyp:policy_win64', | |
| 1559 'common_constants_win64', | 1551 'common_constants_win64', |
| 1560 'installer_util_nacl_win64', | 1552 'installer_util_nacl_win64', |
| 1561 '../base/base.gyp:base_static_win64', | 1553 '../base/base.gyp:base_static_win64', |
| 1562 '../breakpad/breakpad.gyp:breakpad_handler_win64', | 1554 '../breakpad/breakpad.gyp:breakpad_handler_win64', |
| 1563 '../breakpad/breakpad.gyp:breakpad_sender_win64', | 1555 '../breakpad/breakpad.gyp:breakpad_sender_win64', |
| 1564 ], | 1556 ], |
| 1565 'include_dirs': [ | 1557 'include_dirs': [ |
| 1566 '..', | 1558 '..', |
| 1567 ], | 1559 ], |
| 1568 'sources': [ | 1560 'sources': [ |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1728 'destination': '<(PRODUCT_DIR)', | 1720 'destination': '<(PRODUCT_DIR)', |
| 1729 'files': [ | 1721 'files': [ |
| 1730 '<(INTERMEDIATE_DIR)/repack/chrome.pak' | 1722 '<(INTERMEDIATE_DIR)/repack/chrome.pak' |
| 1731 ], | 1723 ], |
| 1732 }, | 1724 }, |
| 1733 ], | 1725 ], |
| 1734 }], # targets | 1726 }], # targets |
| 1735 }], # OS != "mac" | 1727 }], # OS != "mac" |
| 1736 ], # 'conditions' | 1728 ], # 'conditions' |
| 1737 } | 1729 } |
| OLD | NEW |