From 8f3b0af2154a8a3d0e4a624a2f5dd474fc6114bb Mon Sep 17 00:00:00 2001 From: Mark Mentovai Date: Wed, 9 Dec 2015 17:31:10 -0500 Subject: [PATCH] client: Depend on compat The upcoming https://codereview.chromium.org/1513573005/ requires that std::move() in compat be available to callers in client. crashpad_client_mac.cc uses macros not available in all SDK versions. R=scottmg@chromium.org Review URL: https://codereview.chromium.org/1510243002 . --- client/client.gyp | 1 + 1 file changed, 1 insertion(+) diff --git a/client/client.gyp b/client/client.gyp index 765a2b47..3524be41 100644 --- a/client/client.gyp +++ b/client/client.gyp @@ -21,6 +21,7 @@ 'target_name': 'crashpad_client', 'type': 'static_library', 'dependencies': [ + '../compat/compat.gyp:crashpad_compat', '../third_party/mini_chromium/mini_chromium.gyp:base', '../util/util.gyp:crashpad_util', ],