OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
| 8 # GN version: //components/crash/core/browser |
| 9 'target_name': 'crash_core_browser', |
| 10 'type': 'static_library', |
| 11 'include_dirs': [ |
| 12 '..', |
| 13 ], |
| 14 'dependencies': [ |
| 15 'upload_list', |
| 16 '../base/base.gyp:base', |
| 17 '../components/components_strings.gyp:components_strings', |
| 18 ], |
| 19 'sources': [ |
| 20 'crash/core/browser/crashes_ui_util.cc', |
| 21 'crash/core/browser/crashes_ui_util.h', |
| 22 ], |
| 23 }, |
| 24 { |
8 # GN version: //components/crash/core/common | 25 # GN version: //components/crash/core/common |
9 'target_name': 'crash_core_common', | 26 'target_name': 'crash_core_common', |
10 'type': 'static_library', | 27 'type': 'static_library', |
11 'include_dirs': [ | 28 'include_dirs': [ |
12 '..', | 29 '..', |
13 ], | 30 ], |
14 'dependencies': [ | 31 'dependencies': [ |
15 # List of dependencies is intentionally very minimal. Please avoid | 32 # List of dependencies is intentionally very minimal. Please avoid |
16 # adding extra dependencies without first checking with OWNERS. | 33 # adding extra dependencies without first checking with OWNERS. |
17 '../base/base.gyp:base', | 34 '../base/base.gyp:base', |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 ], | 393 ], |
377 }], | 394 }], |
378 ], | 395 ], |
379 }, | 396 }, |
380 ], | 397 ], |
381 }], | 398 }], |
382 ], | 399 ], |
383 }], | 400 }], |
384 ], | 401 ], |
385 } | 402 } |
OLD | NEW |