| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'includes': [ | |
| 7 '../build/common.gypi', | |
| 8 ], | |
| 9 'targets': [ | |
| 10 { | |
| 11 'target_name': 'breakpad_handler', | |
| 12 'type': 'static_library', | |
| 13 'msvs_guid': 'B55CA863-B374-4BAF-95AC-539E4FA4C90C', | |
| 14 'sources': [ | |
| 15 'src/client/windows/crash_generation/client_info.cc', | |
| 16 'src/client/windows/crash_generation/client_info.h', | |
| 17 'src/client/windows/crash_generation/crash_generation_client.cc', | |
| 18 'src/client/windows/crash_generation/crash_generation_client.h', | |
| 19 'src/client/windows/crash_generation/crash_generation_server.cc', | |
| 20 'src/client/windows/crash_generation/crash_generation_server.h', | |
| 21 'src/client/windows/handler/exception_handler.cc', | |
| 22 'src/client/windows/handler/exception_handler.h', | |
| 23 'src/common/windows/guid_string.cc', | |
| 24 'src/common/windows/guid_string.h', | |
| 25 'src/google_breakpad/common/minidump_format.h', | |
| 26 'src/client/windows/crash_generation/minidump_generator.cc', | |
| 27 'src/client/windows/crash_generation/minidump_generator.h', | |
| 28 'src/common/windows/string_utils-inl.h', | |
| 29 ], | |
| 30 'include_dirs': [ | |
| 31 'src', | |
| 32 ], | |
| 33 'direct_dependent_settings': { | |
| 34 'include_dirs': [ | |
| 35 'src', | |
| 36 ], | |
| 37 }, | |
| 38 }, | |
| 39 ], | |
| 40 } | |
| OLD | NEW |