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 { | 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': [ |
(...skipping 12 matching lines...) Expand all Loading... | |
23 }, | 23 }, |
24 }, | 24 }, |
25 'targets': [ | 25 'targets': [ |
26 { | 26 { |
27 'target_name': 'breakpad_utilities', | 27 'target_name': 'breakpad_utilities', |
28 'type': 'static_library', | 28 'type': 'static_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/breakpad_nlist_64.cc', |
32 'src/client/mac/handler/dynamic_images.cc', | 32 'src/client/mac/handler/dynamic_images.cc', |
33 'src/common/mac/bootstrap_compat.cc', | |
34 'src/common/mac/bootstrap_compat.h', | |
Mark Mentovai
2012/02/22 01:41:25
This .gyp file, or at least this section of it, do
| |
33 'src/common/mac/file_id.cc', | 35 'src/common/mac/file_id.cc', |
34 'src/common/mac/MachIPC.mm', | 36 'src/common/mac/MachIPC.mm', |
35 'src/common/mac/macho_id.cc', | 37 'src/common/mac/macho_id.cc', |
36 'src/common/mac/macho_utilities.cc', | 38 'src/common/mac/macho_utilities.cc', |
37 'src/common/mac/macho_walker.cc', | 39 'src/common/mac/macho_walker.cc', |
38 'src/client/minidump_file_writer.cc', | 40 'src/client/minidump_file_writer.cc', |
39 'src/client/mac/handler/minidump_generator.cc', | 41 'src/client/mac/handler/minidump_generator.cc', |
40 'src/common/mac/SimpleStringDictionary.mm', | 42 'src/common/mac/SimpleStringDictionary.mm', |
41 'src/common/string_conversion.cc', | 43 'src/common/string_conversion.cc', |
42 'src/common/mac/string_utilities.cc', | 44 'src/common/mac/string_utilities.cc', |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
499 | 501 |
500 'include_dirs': [ | 502 'include_dirs': [ |
501 '..', | 503 '..', |
502 'src', | 504 'src', |
503 ], | 505 ], |
504 }, | 506 }, |
505 ], | 507 ], |
506 }], | 508 }], |
507 ], | 509 ], |
508 } | 510 } |
OLD | NEW |