Commit 985bd816 authored by rsesek's avatar rsesek Committed by Commit bot

[Mac/GN] Fix Crashpad build and include some targets in gn_all.

BUG=431177
R=scottmg@chromium.org

Review URL: https://codereview.chromium.org/1919373002

Cr-Commit-Position: refs/heads/master@{#389882}
parent 9ab4458b
......@@ -578,6 +578,7 @@ group("both_gn_and_gyp") {
} else if (!is_android && !is_ios) {
deps += [ "//breakpad:symupload($host_toolchain)" ]
}
if (is_chromecast) {
deps += [ "//chromecast:cast_shell" ]
}
......@@ -586,6 +587,13 @@ group("both_gn_and_gyp") {
deps += [ "//media/cast:cast_h264_vt_encoder_unittests" ]
}
if (is_mac || is_win) {
deps += [
"//third_party/crashpad/crashpad/handler:crashpad_handler",
"//third_party/crashpad/crashpad/tools:crashpad_database_util",
]
}
if (use_openh264) {
deps += [
"//third_party/openh264:common",
......
......@@ -3,10 +3,16 @@
# found in the LICENSE file.
config("compat_config") {
include_dirs = []
if (is_win) {
include_dirs = [ "win" ]
} else if (is_mac) {
include_dirs = [
include_dirs += [ "win" ]
} else {
include_dirs += [ "non_win" ]
}
if (is_mac) {
include_dirs += [
"mac",
"non_cxx11_lib",
]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment