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

Side by Side Diff: components/crash.gypi

Issue 2200693002: Refactor CrashDump*Manager to use a shared CrashDumpObserver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cast compile error Created 4 years, 4 months 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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 '../base/base.gyp:base', 453 '../base/base.gyp:base',
454 '../breakpad/breakpad.gyp:breakpad_client', 454 '../breakpad/breakpad.gyp:breakpad_client',
455 '../content/content.gyp:content_browser', 455 '../content/content.gyp:content_browser',
456 '../content/content.gyp:content_common', 456 '../content/content.gyp:content_common',
457 ], 457 ],
458 'sources': [ 458 'sources': [
459 'crash/content/browser/crash_dump_manager_android.cc', 459 'crash/content/browser/crash_dump_manager_android.cc',
460 'crash/content/browser/crash_dump_manager_android.h', 460 'crash/content/browser/crash_dump_manager_android.h',
461 'crash/content/browser/crash_handler_host_linux.cc', 461 'crash/content/browser/crash_handler_host_linux.cc',
462 'crash/content/browser/crash_handler_host_linux.h', 462 'crash/content/browser/crash_handler_host_linux.h',
463 'crash/content/browser/crash_micro_dump_manager_android.cc',
464 'crash/content/browser/crash_micro_dump_manager_android.h',
465 ], 463 ],
466 'include_dirs': [ 464 'include_dirs': [
467 '../breakpad/src', 465 '../breakpad/src',
468 ], 466 ],
469 'direct_dependent_settings': { 467 'direct_dependent_settings': {
470 'include_dirs': [ 468 'include_dirs': [
471 '../breakpad/src', 469 '../breakpad/src',
472 ], 470 ],
473 }, 471 },
474 'target_conditions': [ 472 'target_conditions': [
475 # Need 'target_conditions' to override default filename_rules to include 473 # Need 'target_conditions' to override default filename_rules to include
476 # the files on Android. 474 # the files on Android.
477 ['OS=="android"', { 475 ['OS=="android"', {
478 'sources/': [ 476 'sources/': [
479 ['include', '^crash/content/browser/crash_handler_host_linux \\.cc$'], 477 ['include', '^crash/content/browser/crash_handler_host_linux \\.cc$'],
480 ], 478 ],
481 }], 479 }],
482 ], 480 ],
483 }, 481 },
484 ], 482 ],
485 }], 483 }],
486 ], 484 ],
487 }], 485 }],
488 ], 486 ],
489 } 487 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698