From f115659a672371786bc8cb39fb61cfccbc3d7b81 Mon Sep 17 00:00:00 2001 From: Scott Graham Date: Tue, 8 May 2018 12:20:43 -0700 Subject: [PATCH] fuchsia: Include crashpad_database_util in package Also, add both crashpad_handler and crashpad_database_util to "binaries" which causes them to be included in the final system image. Bug: crashpad:196 Change-Id: Iaf1bf7bbc0a5370695372fd01d7c3da35906dfc3 Reviewed-on: https://chromium-review.googlesource.com/1050576 Reviewed-by: Joshua Peraza Commit-Queue: Scott Graham --- BUILD.gn | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/BUILD.gn b/BUILD.gn index 709ce495..a23bbd3e 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -54,6 +54,16 @@ if (crashpad_is_in_chromium || crashpad_is_in_fuchsia) { deps = [ "handler:crashpad_handler", + "tools:crashpad_database_util", + ] + + binaries = [ + { + name = "crashpad_handler" + }, + { + name = "crashpad_database_util" + }, ] } }