Allow the externalfile scheme to be whitelisted as an allowed scheme for component...
[chromium-blink-merge.git] / components / crash / app / BUILD.gn
blobd3c222ad2b21b37646938acb8be2ada44841acad
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_reporter_client.cc",
12     "crash_reporter_client.h",
13     "crash_keys_win.cc",
14     "crash_keys_win.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     ":lib",
49   ]
51   if (is_android) {
52     defines += [ "CHROME_BUILD_ID=" + android_chrome_build_id ]
53   }
55   if (is_mac) {
56     deps += [ "//breakpad" ]
57   } else if (is_win) {
58     deps += [
59       "//sandbox",
60       "//breakpad:breakpad_handler",
62       #'../breakpad/breakpad.gyp:breakpad_sender',  TODO(GYP)
63     ]
64   } else if (is_posix && !is_ios && (!is_android || !is_android_webview_build)) {
65     deps += [ "//breakpad:client" ]
66   }
69 source_set("test_support") {
70   deps = [
71     ":lib",
72   ]