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 'includes': [ | 6 'includes': [ |
7 '../build/common.gypi', | 7 '../build/common.gypi', |
8 ], | 8 ], |
9 'conditions': [ | 9 'conditions': [ |
10 [ 'OS=="mac"', { | 10 [ 'OS=="mac"', { |
11 'target_defaults': { | 11 'target_defaults': { |
12 'include_dirs': [ | 12 'include_dirs': [ |
13 'src/', | 13 'src', |
14 ], | 14 ], |
15 'configurations': { | 15 'configurations': { |
16 'Debug': { | 16 'Debug': { |
17 'defines': [ | 17 'defines': [ |
18 # This is needed for GTMLogger to work correctly. | 18 # This is needed for GTMLogger to work correctly. |
19 'DEBUG', | 19 'DEBUG', |
20 ], | 20 ], |
21 }, | 21 }, |
22 }, | 22 }, |
23 }, | 23 }, |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 'dependencies': [ | 97 'dependencies': [ |
98 'breakpad_utilities', | 98 'breakpad_utilities', |
99 ], | 99 ], |
100 'sources': [ | 100 'sources': [ |
101 'src/common/mac/dwarf/bytereader.cc', | 101 'src/common/mac/dwarf/bytereader.cc', |
102 'src/common/mac/dwarf/dwarf2reader.cc', | 102 'src/common/mac/dwarf/dwarf2reader.cc', |
103 'src/common/mac/dwarf/functioninfo.cc', | 103 'src/common/mac/dwarf/functioninfo.cc', |
104 'src/common/mac/dump_syms.mm', | 104 'src/common/mac/dump_syms.mm', |
105 'src/tools/mac/dump_syms/dump_syms_tool.mm', | 105 'src/tools/mac/dump_syms/dump_syms_tool.mm', |
106 ], | 106 ], |
| 107 'xcode_settings': { |
| 108 # The DWARF utilities require -funsigned-char. |
| 109 'GCC_CHAR_IS_UNSIGNED_CHAR': 'YES', |
| 110 }, |
107 'link_settings': { | 111 'link_settings': { |
108 'libraries': [ | 112 'libraries': [ |
109 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 113 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
110 ], | 114 ], |
111 } | 115 } |
112 }, | 116 }, |
113 { | 117 { |
114 'target_name': 'symupload', | 118 'target_name': 'symupload', |
115 'type': 'executable', | 119 'type': 'executable', |
116 'include_dirs': [ | 120 'include_dirs': [ |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 # | 321 # |
318 # 'include_dirs': [ | 322 # 'include_dirs': [ |
319 # 'src', | 323 # 'src', |
320 # '..', | 324 # '..', |
321 # ], | 325 # ], |
322 # }, | 326 # }, |
323 ], | 327 ], |
324 }], | 328 }], |
325 ], | 329 ], |
326 } | 330 } |
OLD | NEW |