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 'sources': [ |
| 14 'src/client/windows/crash_generation/client_info.cc', |
| 15 'src/client/windows/crash_generation/client_info.h', |
| 16 'src/client/windows/crash_generation/crash_generation_client.cc', |
| 17 'src/client/windows/crash_generation/crash_generation_client.h', |
| 18 'src/client/windows/crash_generation/crash_generation_server.cc', |
| 19 'src/client/windows/crash_generation/crash_generation_server.h', |
| 20 'src/client/windows/handler/exception_handler.cc', |
| 21 'src/client/windows/handler/exception_handler.h', |
| 22 'src/common/windows/guid_string.cc', |
| 23 'src/common/windows/guid_string.h', |
| 24 'src/google_breakpad/common/minidump_format.h', |
| 25 'src/client/windows/crash_generation/minidump_generator.cc', |
| 26 'src/client/windows/crash_generation/minidump_generator.h', |
| 27 'src/common/windows/string_utils-inl.h', |
| 28 ], |
| 29 'include_dirs': [ |
| 30 'src', |
| 31 ], |
| 32 'direct_dependent_settings': { |
| 33 'include_dirs': [ |
| 34 'src', |
| 35 ], |
| 36 }, |
| 37 }, |
| 38 ], |
| 39 } |
OLD | NEW |