| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 'src/third_party/linux/include', | 348 'src/third_party/linux/include', |
| 349 '..', | 349 '..', |
| 350 '.', | 350 '.', |
| 351 ], | 351 ], |
| 352 }, | 352 }, |
| 353 { | 353 { |
| 354 'target_name': 'breakpad_unittests', | 354 'target_name': 'breakpad_unittests', |
| 355 'type': 'executable', | 355 'type': 'executable', |
| 356 'dependencies': [ | 356 'dependencies': [ |
| 357 '../testing/gtest.gyp:gtest', | 357 '../testing/gtest.gyp:gtest', |
| 358 '../testing/gtest.gyp:gtestmain', | 358 '../testing/gtest.gyp:gtest_main', |
| 359 '../testing/gmock.gyp:gmock', | 359 '../testing/gmock.gyp:gmock', |
| 360 'breakpad_client', | 360 'breakpad_client', |
| 361 'breakpad_processor_support', | 361 'breakpad_processor_support', |
| 362 ], | 362 ], |
| 363 | 363 |
| 364 'sources': [ | 364 'sources': [ |
| 365 'linux/breakpad_googletest_includes.h', | 365 'linux/breakpad_googletest_includes.h', |
| 366 'src/client/linux/handler/exception_handler_unittest.cc', | 366 'src/client/linux/handler/exception_handler_unittest.cc', |
| 367 'src/client/linux/minidump_writer/directory_reader_unittest.cc', | 367 'src/client/linux/minidump_writer/directory_reader_unittest.cc', |
| 368 'src/client/linux/minidump_writer/line_reader_unittest.cc', | 368 'src/client/linux/minidump_writer/line_reader_unittest.cc', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 ], | 413 ], |
| 414 }], | 414 }], |
| 415 ], | 415 ], |
| 416 } | 416 } |
| 417 | 417 |
| 418 # Local Variables: | 418 # Local Variables: |
| 419 # tab-width:2 | 419 # tab-width:2 |
| 420 # indent-tabs-mode:nil | 420 # indent-tabs-mode:nil |
| 421 # End: | 421 # End: |
| 422 # vim: set expandtab tabstop=2 shiftwidth=2: | 422 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |