OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
562 '../base/base.gyp:base_static_win64', | 562 '../base/base.gyp:base_static_win64', |
563 '../chrome/common_constants.gyp:common_constants_win64', | 563 '../chrome/common_constants.gyp:common_constants_win64', |
564 '../components/components.gyp:breakpad_crash_service_win64', | 564 '../components/components.gyp:breakpad_crash_service_win64', |
565 ], | 565 ], |
566 'include_dirs': [ | 566 'include_dirs': [ |
567 '..', | 567 '..', |
568 ], | 568 ], |
569 'sources': [ | 569 'sources': [ |
570 'tools/crash_service/main.cc', | 570 'tools/crash_service/main.cc', |
571 '../content/public/common/content_switches.cc', | 571 '../content/public/common/content_switches.cc', |
| 572 '../ui/gfx/switches.cc', |
572 ], | 573 ], |
573 'defines': [ | 574 'defines': [ |
574 'COMPILE_CONTENT_STATICALLY', | 575 'COMPILE_CONTENT_STATICALLY', |
| 576 'COMPILE_GFX_STATICALLY', |
575 ], | 577 ], |
576 'msvs_settings': { | 578 'msvs_settings': { |
577 'VCLinkerTool': { | 579 'VCLinkerTool': { |
578 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 580 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
579 }, | 581 }, |
580 }, | 582 }, |
581 'configurations': { | 583 'configurations': { |
582 'Common_Base': { | 584 'Common_Base': { |
583 'msvs_target_platform': 'x64', | 585 'msvs_target_platform': 'x64', |
584 }, | 586 }, |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
776 'service/service_utility_process_host.cc', | 778 'service/service_utility_process_host.cc', |
777 'service/service_utility_process_host.h', | 779 'service/service_utility_process_host.h', |
778 ], | 780 ], |
779 }], | 781 }], |
780 ], | 782 ], |
781 }, | 783 }, |
782 ], | 784 ], |
783 }], | 785 }], |
784 ], # 'conditions' | 786 ], # 'conditions' |
785 } | 787 } |
OLD | NEW |