OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'breakpad_handler_target': 0, | 8 'breakpad_handler_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 10 matching lines...) Expand all Loading... |
21 'src/common/windows/guid_string.cc', | 21 'src/common/windows/guid_string.cc', |
22 'src/common/windows/guid_string.h', | 22 'src/common/windows/guid_string.h', |
23 'src/google_breakpad/common/minidump_format.h', | 23 'src/google_breakpad/common/minidump_format.h', |
24 'src/client/windows/crash_generation/minidump_generator.cc', | 24 'src/client/windows/crash_generation/minidump_generator.cc', |
25 'src/client/windows/crash_generation/minidump_generator.h', | 25 'src/client/windows/crash_generation/minidump_generator.h', |
26 'src/common/windows/string_utils-inl.h', | 26 'src/common/windows/string_utils-inl.h', |
27 ], | 27 ], |
28 'include_dirs': [ | 28 'include_dirs': [ |
29 'src', | 29 'src', |
30 ], | 30 ], |
31 'link_settings': { | |
32 'libraries': [ | |
33 '-lurlmon.lib', | |
34 ], | |
35 }, | |
36 'defines': [ | 31 'defines': [ |
37 # Avoid the TerminateThread Application Verifier Failure. | 32 # Avoid the TerminateThread Application Verifier Failure. |
38 'BREAKPAD_NO_TERMINATE_THREAD', | 33 'BREAKPAD_NO_TERMINATE_THREAD', |
39 ], | 34 ], |
40 }], | 35 }], |
41 ], | 36 ], |
42 }, | 37 }, |
43 'conditions': [ | 38 'conditions': [ |
44 [ 'OS=="win"', { | 39 [ 'OS=="win"', { |
45 'targets': [ | 40 'targets': [ |
(...skipping 29 matching lines...) Expand all Loading... |
75 'configurations': { | 70 'configurations': { |
76 'Common_Base': { | 71 'Common_Base': { |
77 'msvs_target_platform': 'x64', | 72 'msvs_target_platform': 'x64', |
78 }, | 73 }, |
79 }, | 74 }, |
80 }, | 75 }, |
81 ], | 76 ], |
82 }], | 77 }], |
83 ], | 78 ], |
84 } | 79 } |
OLD | NEW |