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