| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'includes': [ |
| 7 '../../build/common.gypi', |
| 8 ], |
| 9 'target_defaults': { |
| 10 'include_dirs': [ |
| 11 # all our own includes are relative to src/ |
| 12 '../..', |
| 13 ], |
| 14 }, |
| 15 'targets': [ |
| 16 { |
| 17 'target_name': 'crash_report', |
| 18 'type': 'static_library', |
| 19 'sources': [ |
| 20 'crash_report.cc', |
| 21 'crash_report.h', |
| 22 'vectored_handler-impl.h', |
| 23 'vectored_handler.h', |
| 24 ], |
| 25 'conditions': [ |
| 26 ['OS=="win"', { |
| 27 'dependencies': [ |
| 28 '../../breakpad/breakpad.gyp:breakpad_handler', |
| 29 ], |
| 30 }], |
| 31 ], |
| 32 }, |
| 33 ], |
| 34 } |
| 35 |
| 36 # vim: shiftwidth=2:et:ai:tabstop=2 |
| 37 |
| 38 # Local Variables: |
| 39 # tab-width:2 |
| 40 # indent-tabs-mode:nil |
| 41 # End: |
| 42 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |