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

Side by Side Diff: components/crash/content/browser/BUILD.gn

Issue 2393853002: Refactor CrashDump*Manager to use a shared CrashDumpObserver singleton. (Closed)
Patch Set: Rebase Created 3 years, 11 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 } 7 }
8 8
9 source_set("browser") { 9 source_set("browser") {
10 sources = [ 10 sources = [
11 "crash_dump_manager_android.cc", 11 "crash_dump_manager_android.cc",
12 "crash_dump_manager_android.h", 12 "crash_dump_manager_android.h",
13 "crash_micro_dump_manager_android.cc", 13 "crash_dump_observer_android.cc",
14 "crash_micro_dump_manager_android.h", 14 "crash_dump_observer_android.h",
15 ] 15 ]
16 16
17 deps = [ 17 deps = [
18 "//base", 18 "//base",
19 "//breakpad:client", 19 "//breakpad:client",
20 "//components/crash/content/app", 20 "//components/crash/content/app",
21 "//content/public/browser", 21 "//content/public/browser",
22 "//content/public/common", 22 "//content/public/common",
23 ] 23 ]
24 24
(...skipping 11 matching lines...) Expand all
36 ] 36 ]
37 } 37 }
38 38
39 # This is not in the GYP build but this target includes breakpad client 39 # This is not in the GYP build but this target includes breakpad client
40 # headers, so add the dependency here. 40 # headers, so add the dependency here.
41 if (is_posix && !is_ios) { 41 if (is_posix && !is_ios) {
42 configs += [ "//breakpad:client_config" ] 42 configs += [ "//breakpad:client_config" ]
43 public_configs = [ "//breakpad:client_config" ] 43 public_configs = [ "//breakpad:client_config" ]
44 } 44 }
45 } 45 }
OLDNEW
« no previous file with comments | « chromecast/browser/cast_content_browser_client.cc ('k') | components/crash/content/browser/crash_dump_manager_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698