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