| Index: build/secondary/third_party/crashpad/crashpad/compat/BUILD.gn
|
| diff --git a/build/secondary/third_party/crashpad/crashpad/compat/BUILD.gn b/build/secondary/third_party/crashpad/crashpad/compat/BUILD.gn
|
| index 152b05d2aa003f0af74863639bbe84029daac361..031a721c581046d6d0f20c59c4df58f15b303a5f 100644
|
| --- a/build/secondary/third_party/crashpad/crashpad/compat/BUILD.gn
|
| +++ b/build/secondary/third_party/crashpad/crashpad/compat/BUILD.gn
|
| @@ -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",
|
| ]
|
|
|