| 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 | 357 |
| 358 'dependencies': [ | 358 'dependencies': [ |
| 359 'breakpad_client', | 359 'breakpad_client', |
| 360 ], | 360 ], |
| 361 | 361 |
| 362 'include_dirs': [ | 362 'include_dirs': [ |
| 363 '..', | 363 '..', |
| 364 'src', | 364 'src', |
| 365 ], | 365 ], |
| 366 }, | 366 }, |
| 367 { |
| 368 'target_name': 'minidump-2-core', |
| 369 'type': 'executable', |
| 370 |
| 371 'sources': [ |
| 372 'src/tools/linux/md2core/minidump-2-core.cc' |
| 373 ], |
| 374 |
| 375 'include_dirs': [ |
| 376 '..', |
| 377 'src', |
| 378 ], |
| 379 }, |
| 367 ], | 380 ], |
| 368 }], | 381 }], |
| 369 ], | 382 ], |
| 370 } | 383 } |
| 371 | 384 |
| 372 # Local Variables: | 385 # Local Variables: |
| 373 # tab-width:2 | 386 # tab-width:2 |
| 374 # indent-tabs-mode:nil | 387 # indent-tabs-mode:nil |
| 375 # End: | 388 # End: |
| 376 # vim: set expandtab tabstop=2 shiftwidth=2: | 389 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |