OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 'src/common/convert_UTF.h', | 302 'src/common/convert_UTF.h', |
303 'src/common/linux/file_id.cc', | 303 'src/common/linux/file_id.cc', |
304 'src/common/linux/file_id.h', | 304 'src/common/linux/file_id.h', |
305 'src/common/linux/google_crashdump_uploader.cc', | 305 'src/common/linux/google_crashdump_uploader.cc', |
306 'src/common/linux/google_crashdump_uploader.h', | 306 'src/common/linux/google_crashdump_uploader.h', |
307 'src/common/linux/guid_creator.cc', | 307 'src/common/linux/guid_creator.cc', |
308 'src/common/linux/guid_creator.h', | 308 'src/common/linux/guid_creator.h', |
309 'src/common/linux/libcurl_wrapper.cc', | 309 'src/common/linux/libcurl_wrapper.cc', |
310 'src/common/linux/libcurl_wrapper.h', | 310 'src/common/linux/libcurl_wrapper.h', |
311 'src/common/linux/linux_libc_support.h', | 311 'src/common/linux/linux_libc_support.h', |
312 'src/common/linux/linux_syscall_support.h', | |
313 'src/common/memory.h', | 312 'src/common/memory.h', |
314 'src/common/string_conversion.cc', | 313 'src/common/string_conversion.cc', |
315 'src/common/string_conversion.h', | 314 'src/common/string_conversion.h', |
316 ], | 315 ], |
317 | 316 |
318 'conditions': [ | 317 'conditions': [ |
319 ['target_arch=="arm"', { | 318 ['target_arch=="arm"', { |
320 'cflags': ['-Wa,-mimplicit-it=always'], | 319 'cflags': ['-Wa,-mimplicit-it=always'], |
321 }], | 320 }], |
322 ], | 321 ], |
(...skipping 16 matching lines...) Expand all Loading... |
339 # Breakpad r693 uses some files from src/processor in unit tests. | 338 # Breakpad r693 uses some files from src/processor in unit tests. |
340 'target_name': 'breakpad_processor_support', | 339 'target_name': 'breakpad_processor_support', |
341 'type': 'static_library', | 340 'type': 'static_library', |
342 | 341 |
343 'sources': [ | 342 'sources': [ |
344 'src/processor/basic_code_modules.cc', | 343 'src/processor/basic_code_modules.cc', |
345 'src/processor/basic_code_modules.h', | 344 'src/processor/basic_code_modules.h', |
346 'src/processor/logging.cc', | 345 'src/processor/logging.cc', |
347 'src/processor/logging.h', | 346 'src/processor/logging.h', |
348 'src/processor/minidump.cc', | 347 'src/processor/minidump.cc', |
349 'src/processor/minidump.h', | |
350 'src/processor/pathname_stripper.cc', | 348 'src/processor/pathname_stripper.cc', |
351 'src/processor/pathname_stripper.h', | 349 'src/processor/pathname_stripper.h', |
352 ], | 350 ], |
353 | 351 |
354 'include_dirs': [ | 352 'include_dirs': [ |
355 'src', | 353 'src', |
356 'src/client', | 354 'src/client', |
357 'src/third_party/linux/include', | 355 'src/third_party/linux/include', |
358 '..', | 356 '..', |
359 '.', | 357 '.', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 ], | 420 ], |
423 }], | 421 }], |
424 ], | 422 ], |
425 } | 423 } |
426 | 424 |
427 # Local Variables: | 425 # Local Variables: |
428 # tab-width:2 | 426 # tab-width:2 |
429 # indent-tabs-mode:nil | 427 # indent-tabs-mode:nil |
430 # End: | 428 # End: |
431 # vim: set expandtab tabstop=2 shiftwidth=2: | 429 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |