| 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 'breakpad_sender.gypi', | 7 'breakpad_sender.gypi', |
| 8 'breakpad_handler.gypi', | 8 'breakpad_handler.gypi', |
| 9 ], | 9 ], |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 }, | 220 }, |
| 221 ], | 221 ], |
| 222 }], | 222 }], |
| 223 ], | 223 ], |
| 224 'targets': [ | 224 'targets': [ |
| 225 { | 225 { |
| 226 'target_name': 'breakpad_client', | 226 'target_name': 'breakpad_client', |
| 227 'type': '<(library)', | 227 'type': '<(library)', |
| 228 | 228 |
| 229 'sources': [ | 229 'sources': [ |
| 230 'src/client/linux/crash_generation/crash_generation_client.cc', |
| 230 'src/client/linux/handler/exception_handler.cc', | 231 'src/client/linux/handler/exception_handler.cc', |
| 231 'src/client/linux/minidump_writer/directory_reader.h', | 232 'src/client/linux/minidump_writer/directory_reader.h', |
| 232 'src/client/linux/minidump_writer/line_reader.h', | 233 'src/client/linux/minidump_writer/line_reader.h', |
| 233 'src/client/linux/minidump_writer/linux_dumper.cc', | 234 'src/client/linux/minidump_writer/linux_dumper.cc', |
| 234 'src/client/linux/minidump_writer/linux_dumper.h', | 235 'src/client/linux/minidump_writer/linux_dumper.h', |
| 235 'src/client/linux/minidump_writer/minidump_writer.cc', | 236 'src/client/linux/minidump_writer/minidump_writer.cc', |
| 236 'src/client/linux/minidump_writer/minidump_writer.h', | 237 'src/client/linux/minidump_writer/minidump_writer.h', |
| 237 'src/client/minidump_file_writer-inl.h', | 238 'src/client/minidump_file_writer-inl.h', |
| 238 'src/client/minidump_file_writer.cc', | 239 'src/client/minidump_file_writer.cc', |
| 239 'src/client/minidump_file_writer.h', | 240 'src/client/minidump_file_writer.h', |
| 240 'src/common/convert_UTF.c', | 241 'src/common/convert_UTF.c', |
| 241 'src/common/convert_UTF.h', | 242 'src/common/convert_UTF.h', |
| 242 'src/common/linux/guid_creator.cc', | 243 'src/common/linux/guid_creator.cc', |
| 243 'src/common/linux/guid_creator.h', | 244 'src/common/linux/guid_creator.h', |
| 245 'src/common/linux/file_id.cc', |
| 246 'src/common/linux/file_id.h', |
| 244 'src/common/linux/linux_libc_support.h', | 247 'src/common/linux/linux_libc_support.h', |
| 245 'src/common/linux/linux_syscall_support.h', | 248 'src/common/linux/linux_syscall_support.h', |
| 246 'src/common/linux/memory.h', | 249 'src/common/linux/memory.h', |
| 247 'src/common/string_conversion.cc', | 250 'src/common/string_conversion.cc', |
| 248 'src/common/string_conversion.h', | 251 'src/common/string_conversion.h', |
| 249 ], | 252 ], |
| 250 | 253 |
| 251 'include_dirs': [ | 254 'include_dirs': [ |
| 252 'src', | 255 'src', |
| 253 '..', | 256 '..', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 'sources': [ | 292 'sources': [ |
| 290 'linux/generate-test-dump.cc', | 293 'linux/generate-test-dump.cc', |
| 291 ], | 294 ], |
| 292 | 295 |
| 293 'dependencies': [ | 296 'dependencies': [ |
| 294 'breakpad_client', | 297 'breakpad_client', |
| 295 ], | 298 ], |
| 296 | 299 |
| 297 'include_dirs': [ | 300 'include_dirs': [ |
| 298 '..', | 301 '..', |
| 302 'src', |
| 299 ], | 303 ], |
| 300 }, | 304 }, |
| 301 ], | 305 ], |
| 302 }], | 306 }], |
| 303 ], | 307 ], |
| 304 } | 308 } |
| 305 | 309 |
| 306 # Local Variables: | 310 # Local Variables: |
| 307 # tab-width:2 | 311 # tab-width:2 |
| 308 # indent-tabs-mode:nil | 312 # indent-tabs-mode:nil |
| 309 # End: | 313 # End: |
| 310 # vim: set expandtab tabstop=2 shiftwidth=2: | 314 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |