Roll src/third_party/skia 99c7c07:4af6580
[chromium-blink-merge.git] / components / crash / app / BUILD.gn
bloba75841692f959e37e795f329589bedeb2e1c0846
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
3 # found in the LICENSE file.
5 if (is_android) {
6   import("//build/config/android/config.gni")
9 source_set("lib") {
10   sources = [
11     "crash_keys_win.cc",
12     "crash_keys_win.h",
13     "crash_reporter_client.cc",
14     "crash_reporter_client.h",
15   ]
17   include_dirs = [ "../../../breakpad/src" ]
20 # Note: if you depend on this target, you need to either link in
21 # content.gyp:content_common, or add content/public/common/content_switches.cc
22 # to your sources.
24 # GYP version: components/crash.gypi:crash_component
25 source_set("app") {
26   sources = [
27     "breakpad_linux_impl.h",
28     "breakpad_mac.h",
29     "breakpad_mac.mm",
30     "breakpad_win.cc",
31     "breakpad_win.h",
32     "hard_error_handler_win.cc",
33     "hard_error_handler_win.h",
34   ]
35   if (is_android || is_linux) {
36     # Want these files on both Linux and Android.
37     set_sources_assignment_filter([])
38     sources += [
39       "breakpad_linux.cc",
40       "breakpad_linux.h",
41     ]
42   }
44   defines = [ "CRASH_IMPLEMENTATION" ]
46   deps = [
47     "//base",
48     "//base:base_static",
49     ":lib",
50   ]
52   if (is_android) {
53     defines += [ "CHROME_BUILD_ID=" + android_chrome_build_id ]
54   }
56   if (is_mac) {
57     deps += [ "//breakpad" ]
58   } else if (is_win) {
59     deps += [
60       "//sandbox",
61       "//breakpad:breakpad_handler",
63       #'../breakpad/breakpad.gyp:breakpad_sender',  TODO(GYP)
64     ]
65   } else if (is_posix && !is_ios) {
66     deps += [ "//breakpad:client" ]
67   }
70 source_set("test_support") {
71   deps = [
72     ":lib",
73   ]