| OLD | NEW |
| 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", |
| 14 "crash_micro_dump_manager_android.h", |
| 13 ] | 15 ] |
| 14 | 16 |
| 15 deps = [ | 17 deps = [ |
| 16 "//base", | 18 "//base", |
| 17 "//breakpad:client", | 19 "//breakpad:client", |
| 18 "//components/crash/content/app", | 20 "//components/crash/content/app", |
| 19 "//content/public/browser", | 21 "//content/public/browser", |
| 20 "//content/public/common", | 22 "//content/public/common", |
| 21 ] | 23 ] |
| 22 | 24 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 34 ] | 36 ] |
| 35 } | 37 } |
| 36 | 38 |
| 37 # 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 |
| 38 # headers, so add the dependency here. | 40 # headers, so add the dependency here. |
| 39 if (is_posix && !is_ios) { | 41 if (is_posix && !is_ios) { |
| 40 configs += [ "//breakpad:client_config" ] | 42 configs += [ "//breakpad:client_config" ] |
| 41 public_configs = [ "//breakpad:client_config" ] | 43 public_configs = [ "//breakpad:client_config" ] |
| 42 } | 44 } |
| 43 } | 45 } |
| OLD | NEW |