| 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': [ | |
| 7 '../../build/common.gypi', | |
| 8 ], | |
| 9 'target_defaults': { | 6 'target_defaults': { |
| 10 'include_dirs': [ | 7 'include_dirs': [ |
| 11 # all our own includes are relative to src/ | 8 # all our own includes are relative to src/ |
| 12 '../..', | 9 '../..', |
| 13 ], | 10 ], |
| 14 }, | 11 }, |
| 15 'targets': [ | 12 'targets': [ |
| 16 { | 13 { |
| 17 'target_name': 'crash_report', | 14 'target_name': 'crash_report', |
| 18 'type': 'static_library', | 15 'type': 'static_library', |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 'dependencies': [ | 104 'dependencies': [ |
| 108 '../../base/base.gyp:base', | 105 '../../base/base.gyp:base', |
| 109 '../../testing/gtest.gyp:gtest', | 106 '../../testing/gtest.gyp:gtest', |
| 110 ], | 107 ], |
| 111 'sources': [ | 108 'sources': [ |
| 112 'minidump_test.cc', | 109 'minidump_test.cc', |
| 113 ], | 110 ], |
| 114 }, | 111 }, |
| 115 ], | 112 ], |
| 116 } | 113 } |
| OLD | NEW |