diff options
author | dpranke <dpranke@chromium.org> | 2014-11-10 15:51:22 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-10 23:51:42 +0000 |
commit | cf8465db79634a28bdf66c8c518fccddf3af1ee9 (patch) | |
tree | ab9600dec63e7b05105e9f32a5c81972ef9943ab /breakpad | |
parent | 7f47fa46bcc8c3a3d14cd70c9451a1b5869248f4 (diff) | |
download | chromium_src-cf8465db79634a28bdf66c8c518fccddf3af1ee9.zip chromium_src-cf8465db79634a28bdf66c8c518fccddf3af1ee9.tar.gz chromium_src-cf8465db79634a28bdf66c8c518fccddf3af1ee9.tar.bz2 |
This gets at least a chunk of the Mac GN build working.
With a few additional fixes in other repos, we will have substantially more working, but this'll do to at least make the bots functional.
R=brettw@chromium.org
BUG=431117
Review URL: https://codereview.chromium.org/702003002
Cr-Commit-Position: refs/heads/master@{#303540}
Diffstat (limited to 'breakpad')
-rw-r--r-- | breakpad/BUILD.gn | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/breakpad/BUILD.gn b/breakpad/BUILD.gn index 56a2acb..5372d2b 100644 --- a/breakpad/BUILD.gn +++ b/breakpad/BUILD.gn @@ -222,7 +222,11 @@ if (current_toolchain == host_toolchain && is_mac) { "src/tools/mac/symupload/symupload.m", ] - libs = [ "Foundaction.framework" ] + include_dirs = [ + "src/common/mac" + ] + + libs = [ "Foundation.framework" ] } } @@ -250,6 +254,11 @@ if (is_mac) { ] configs += [ ":internal_config" ] + + # TODO(GYP): TODO(dpranke): Fix the compile for this. + sources -= [ + "src/client/mac/handler/dynamic_images.cc", + ] } executable("crash_inspector") { @@ -275,9 +284,9 @@ if (is_mac) { ] } - executable("crash_report_sender") { - # TODO(GYP) this target has some mac_bundle_resources stuff. - } + # TODO(GYP) this target has some mac_bundle_resources stuff. + # executable("crash_report_sender") { + # } config("breakpad_config") { include_dirs = [ "src/client/apple/Framework" ] |