Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(502)

Side by Side Diff: components/crash.gypi

Issue 1525023003: Distinguish in the browser between renderer crashes and kills (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Finalized, RFC Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 8 # GN version: //components/crash/core/browser
9 'target_name': 'crash_core_browser', 9 'target_name': 'crash_core_browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 '../base/base.gyp:base', 393 '../base/base.gyp:base',
394 '../breakpad/breakpad.gyp:breakpad_client', 394 '../breakpad/breakpad.gyp:breakpad_client',
395 '../content/content.gyp:content_browser', 395 '../content/content.gyp:content_browser',
396 '../content/content.gyp:content_common', 396 '../content/content.gyp:content_common',
397 ], 397 ],
398 'sources': [ 398 'sources': [
399 'crash/content/browser/crash_dump_manager_android.cc', 399 'crash/content/browser/crash_dump_manager_android.cc',
400 'crash/content/browser/crash_dump_manager_android.h', 400 'crash/content/browser/crash_dump_manager_android.h',
401 'crash/content/browser/crash_handler_host_linux.cc', 401 'crash/content/browser/crash_handler_host_linux.cc',
402 'crash/content/browser/crash_handler_host_linux.h', 402 'crash/content/browser/crash_handler_host_linux.h',
403 'crash/content/browser/crash_micro_dump_manager_android.cc',
404 'crash/content/browser/crash_micro_dump_manager_android.h',
403 ], 405 ],
404 'include_dirs': [ 406 'include_dirs': [
405 '../breakpad/src', 407 '../breakpad/src',
406 ], 408 ],
407 'target_conditions': [ 409 'target_conditions': [
408 # Need 'target_conditions' to override default filename_rules to include 410 # Need 'target_conditions' to override default filename_rules to include
409 # the files on Android. 411 # the files on Android.
410 ['OS=="android"', { 412 ['OS=="android"', {
411 'sources/': [ 413 'sources/': [
412 ['include', '^crash/content/browser/crash_handler_host_linux \\.cc$'], 414 ['include', '^crash/content/browser/crash_handler_host_linux \\.cc$'],
413 ], 415 ],
414 }], 416 }],
415 ], 417 ],
416 }, 418 },
417 ], 419 ],
418 }], 420 }],
419 ], 421 ],
420 }], 422 }],
421 ], 423 ],
422 } 424 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698