| OLD | NEW |
| 1 # Copyright (c) 2009 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 'breakpad_sender.gypi', | 7 'breakpad_sender.gypi', |
| 8 'breakpad_handler.gypi', | 8 'breakpad_handler.gypi', |
| 9 ], | 9 ], |
| 10 'conditions': [ | 10 'conditions': [ |
| 11 [ 'OS=="mac"', { | 11 [ 'OS=="mac"', { |
| 12 'target_defaults': { | 12 'target_defaults': { |
| 13 'include_dirs': [ | 13 'include_dirs': [ |
| 14 'src', | 14 'src', |
| 15 ], | 15 ], |
| 16 'configurations': { | 16 'configurations': { |
| 17 'Debug_Base': { | 17 'Debug_Base': { |
| 18 'defines': [ | 18 'defines': [ |
| 19 # This is needed for GTMLogger to work correctly. | 19 # This is needed for GTMLogger to work correctly. |
| 20 'DEBUG', | 20 'DEBUG', |
| 21 ], | 21 ], |
| 22 }, | 22 }, |
| 23 }, | 23 }, |
| 24 }, | 24 }, |
| 25 'targets': [ | 25 'targets': [ |
| 26 { | 26 { |
| 27 'target_name': 'breakpad_utilities', | 27 'target_name': 'breakpad_utilities', |
| 28 'type': '<(library)', | 28 'type': '<(library)', |
| 29 'sources': [ | 29 'sources': [ |
| 30 'src/common/convert_UTF.c', | 30 'src/common/convert_UTF.c', |
| 31 'src/client/mac/handler/breakpad_nlist_64.cc', |
| 31 'src/client/mac/handler/dynamic_images.cc', | 32 'src/client/mac/handler/dynamic_images.cc', |
| 32 'src/common/mac/file_id.cc', | 33 'src/common/mac/file_id.cc', |
| 33 'src/common/mac/MachIPC.mm', | 34 'src/common/mac/MachIPC.mm', |
| 34 'src/common/mac/macho_id.cc', | 35 'src/common/mac/macho_id.cc', |
| 35 'src/common/mac/macho_utilities.cc', | 36 'src/common/mac/macho_utilities.cc', |
| 36 'src/common/mac/macho_walker.cc', | 37 'src/common/mac/macho_walker.cc', |
| 37 'src/client/minidump_file_writer.cc', | 38 'src/client/minidump_file_writer.cc', |
| 38 'src/client/mac/handler/minidump_generator.cc', | 39 'src/client/mac/handler/minidump_generator.cc', |
| 39 'src/common/mac/SimpleStringDictionary.mm', | 40 'src/common/mac/SimpleStringDictionary.mm', |
| 40 'src/common/string_conversion.cc', | 41 'src/common/string_conversion.cc', |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 ], | 414 ], |
| 414 }], | 415 }], |
| 415 ], | 416 ], |
| 416 } | 417 } |
| 417 | 418 |
| 418 # Local Variables: | 419 # Local Variables: |
| 419 # tab-width:2 | 420 # tab-width:2 |
| 420 # indent-tabs-mode:nil | 421 # indent-tabs-mode:nil |
| 421 # End: | 422 # End: |
| 422 # vim: set expandtab tabstop=2 shiftwidth=2: | 423 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |