fuchsia: Fix include_dirs for host Mac build

Change-Id: I157fe2ab95d0b152ef5cc09cd0b6e56649c9f727
Reviewed-on: https://chromium-review.googlesource.com/c/1277777
Reviewed-by: Joshua Peraza <jperaza@chromium.org>
Commit-Queue: Scott Graham <scottmg@chromium.org>
This commit is contained in:
Scott Graham 2018-10-11 15:56:22 -07:00 committed by Commit Bot
parent 1c09361c2c
commit 237c5ebdf3

View File

@ -416,7 +416,11 @@ static_library("util") {
public_configs = [ "..:crashpad_config" ]
# Include generated files starting with "util".
include_dirs = [ "$root_gen_dir/third_party/crashpad/crashpad" ]
if (crashpad_is_in_fuchsia) {
include_dirs = [ "$root_gen_dir/third_party/crashpad" ]
} else {
include_dirs = [ "$root_gen_dir/third_party/crashpad/crashpad" ]
}
public_deps = [
"../compat",