| 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("lib") { | 9 source_set("lib") { |
| 10 sources = [ | 10 sources = [ |
| 11 "breakpad_client.cc", | 11 "breakpad_client.cc", |
| 12 "breakpad_client.h", | 12 "breakpad_client.h", |
| 13 "crash_keys_win.cc", | 13 "crash_keys_win.cc", |
| 14 "crash_keys_win.h", | 14 "crash_keys_win.h", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 include_dirs = [ | 17 include_dirs = [ |
| 18 "../../../breakpad/src", | 18 "../../../breakpad/src", |
| 19 ] | 19 ] |
| 20 } | 20 } |
| 21 | 21 |
| 22 # Note: if you depend on this target, you need to either link in | 22 # Note: if you depend on this target, you need to either link in |
| 23 # content.gyp:content_common, or add content/public/common/content_switches.cc | 23 # content.gyp:content_common, or add content/public/common/content_switches.cc |
| 24 # to your sources. | 24 # to your sources. |
| 25 # | 25 # |
| 26 # GYP version: components/breakpad.gyp:breakpad_component | 26 # GYP version: components/crash.gypi:crash_component |
| 27 source_set("app") { | 27 source_set("app") { |
| 28 sources = [ | 28 sources = [ |
| 29 "breakpad_linux_impl.h", | 29 "breakpad_linux_impl.h", |
| 30 "breakpad_mac.h", | 30 "breakpad_mac.h", |
| 31 "breakpad_mac.mm", | 31 "breakpad_mac.mm", |
| 32 "breakpad_win.cc", | 32 "breakpad_win.cc", |
| 33 "breakpad_win.h", | 33 "breakpad_win.h", |
| 34 "hard_error_handler_win.cc", | 34 "hard_error_handler_win.cc", |
| 35 "hard_error_handler_win.h", | 35 "hard_error_handler_win.h", |
| 36 ] | 36 ] |
| 37 if (is_android || is_linux) { | 37 if (is_android || is_linux) { |
| 38 # Want these files on both Linux and Android. | 38 # Want these files on both Linux and Android. |
| 39 set_sources_assignment_filter([]) | 39 set_sources_assignment_filter([]) |
| 40 sources += [ | 40 sources += [ |
| 41 "breakpad_linux.cc", | 41 "breakpad_linux.cc", |
| 42 "breakpad_linux.h", | 42 "breakpad_linux.h", |
| 43 ] | 43 ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 defines = [ "BREAKPAD_IMPLEMENTATION" ] | 46 defines = [ "CRASH_IMPLEMENTATION" ] |
| 47 | 47 |
| 48 deps = [ | 48 deps = [ |
| 49 "//base", | 49 "//base", |
| 50 ":lib", | 50 ":lib", |
| 51 ] | 51 ] |
| 52 | 52 |
| 53 if (is_mac) { | 53 if (is_mac) { |
| 54 deps += [ "//breakpad" ] | 54 deps += [ "//breakpad" ] |
| 55 } else if (is_win) { | 55 } else if (is_win) { |
| 56 deps += [ | 56 deps += [ |
| 57 "//sandbox", | 57 "//sandbox", |
| 58 "//breakpad:breakpad_handler", | 58 "//breakpad:breakpad_handler", |
| 59 #'../breakpad/breakpad.gyp:breakpad_sender', TODO(GYP) | 59 #'../breakpad/breakpad.gyp:breakpad_sender', TODO(GYP) |
| 60 ] | 60 ] |
| 61 } else if (is_posix && !is_ios && | 61 } else if (is_posix && !is_ios && |
| 62 (!is_android || !is_android_webview_build)) { | 62 (!is_android || !is_android_webview_build)) { |
| 63 deps += [ "//breakpad:client" ] | 63 deps += [ "//breakpad:client" ] |
| 64 } | 64 } |
| 65 } | 65 } |
| 66 | 66 |
| 67 source_set("test_support") { | 67 source_set("test_support") { |
| 68 deps = [ ":lib" ] | 68 deps = [ ":lib" ] |
| 69 } | 69 } |
| OLD | NEW |