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 '../../build/common.gypi', | 7 '../../build/common.gypi', |
8 ], | 8 ], |
9 'target_defaults': { | 9 'target_defaults': { |
10 'include_dirs': [ | 10 'include_dirs': [ |
11 # all our own includes are relative to src/ | 11 # all our own includes are relative to src/ |
12 '../..', | 12 '../..', |
13 ], | 13 ], |
14 }, | 14 }, |
15 'targets': [ | 15 'targets': [ |
16 { | 16 { |
17 'target_name': 'crash_report', | 17 'target_name': 'crash_report', |
18 'type': 'static_library', | 18 'type': 'static_library', |
19 'sources': [ | 19 'sources': [ |
| 20 'crash_metrics.cc', |
| 21 'crash_metrics.h', |
20 'crash_report.cc', | 22 'crash_report.cc', |
21 'crash_report.h', | 23 'crash_report.h', |
22 'nt_loader.cc', | 24 'nt_loader.cc', |
23 'nt_loader.h', | 25 'nt_loader.h', |
24 'vectored_handler-impl.h', | 26 'vectored_handler-impl.h', |
25 'vectored_handler.h', | 27 'vectored_handler.h', |
26 ], | 28 ], |
27 'conditions': [ | 29 'conditions': [ |
28 ['OS=="win"', { | 30 ['OS=="win"', { |
29 'dependencies': [ | 31 'dependencies': [ |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 ], | 112 ], |
111 } | 113 } |
112 | 114 |
113 # vim: shiftwidth=2:et:ai:tabstop=2 | 115 # vim: shiftwidth=2:et:ai:tabstop=2 |
114 | 116 |
115 # Local Variables: | 117 # Local Variables: |
116 # tab-width:2 | 118 # tab-width:2 |
117 # indent-tabs-mode:nil | 119 # indent-tabs-mode:nil |
118 # End: | 120 # End: |
119 # vim: set expandtab tabstop=2 shiftwidth=2: | 121 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |