From 746cd5788d57799fee1e327867ab9d4e9a76d6af Mon Sep 17 00:00:00 2001 From: "gspencer@google.com" Date: Wed, 24 Jun 2009 01:46:45 +0000 Subject: This adds in the GYP files needed for our GYP build, and modifies the DEPS file extensively to match. Review URL: http://codereview.chromium.org/131116 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19091 0039d316-1c4b-4281-b951-d872f2087c98 --- o3d/breakpad/breakpad.gyp | 56 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 o3d/breakpad/breakpad.gyp (limited to 'o3d/breakpad/breakpad.gyp') diff --git a/o3d/breakpad/breakpad.gyp b/o3d/breakpad/breakpad.gyp new file mode 100644 index 0000000..9b04f4a --- /dev/null +++ b/o3d/breakpad/breakpad.gyp @@ -0,0 +1,56 @@ +# Copyright (c) 2009 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'variables': { + 'chromium_code': 1, + }, + 'includes': [ + '../build/common.gypi', + ], + 'target_defaults': { + 'include_dirs': [ + '..', + '../..', + '../../breakpad/src', + ], + }, + 'conditions': [ + ['OS=="win"', + { + 'targets': [ + { + 'target_name': 'o3dBreakpad', + 'type': 'static_library', + 'dependencies': [ + '../../breakpad/breakpad.gyp:breakpad_sender', + '../../breakpad/breakpad.gyp:breakpad_handler', + ], + 'sources': [ + 'win/exception_handler_win32.cc', + 'win/breakpad_config.cc', + 'win/bluescreen_detector.cc', + ], + 'direct_dependent_settings': { + 'include_dirs': [ + '../../breakpad/src', + ], + }, + }, + { + 'target_name': 'reporter', + 'type': 'executable', + 'dependencies': [ + 'o3dBreakpad', + ], + 'sources': [ + 'win/crash_sender_win32.cc', + '../../<(breakpaddir)/client/windows/sender/crash_report_sender.cc', + ], + }, + ], + }, + ], + ], +} -- cgit v1.1