Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1445)

Unified Diff: chrome/chrome_tests.gypi

Issue 9432033: Add experiments info to crash dumps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Last Few Nits Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | chrome/common/child_process_logging.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_tests.gypi
===================================================================
--- chrome/chrome_tests.gypi (revision 130670)
+++ chrome/chrome_tests.gypi (working copy)
@@ -2566,6 +2566,83 @@
],
},
{
+ 'target_name': 'chrome_app_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ # unit tests should only depend on
+ # 1) everything that the chrome binaries depend on:
+ '<@(chromium_dependencies)',
+ # 2) test-specific support libraries:
+ '../testing/gmock.gyp:gmock',
+ '../testing/gtest.gyp:gtest',
+ 'test_support_common',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'app/breakpad_field_trial_win.cc',
+ 'app/breakpad_win.cc',
+ 'app/breakpad_unittest_win.cc',
+ 'app/hard_error_handler_win.cc',
+ 'app/run_all_unittests.cc'
+ ],
+ 'conditions': [
+ ['OS=="mac"', {
+ # TODO(mark): We really want this for all non-static library targets,
+ # but when we tried to pull it up to the common.gypi level, it broke
+ # other things like the ui, startup, and page_cycler tests. *shrug*
+ 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
+
+ # libwebcore.a is so large that ld may not have a sufficiently large
+ # "hole" in its address space into which it can be mmaped by the
+ # time it reaches this library. As of May 10, 2010, libwebcore.a is
+ # about 1GB in some builds. In the Mac OS X 10.5 toolchain, using
+ # Xcode 3.1, ld is only a 32-bit executable, and address space
+ # exhaustion is the result, with ld failing and producing
+ # the message:
+ # ld: in .../libwebcore.a, can't map file, errno=12
+ #
+ # As a workaround, ensure that libwebcore.a appears to ld first when
+ # linking unit_tests. This allows the library to be mmapped when
+ # ld's address space is "wide open." Other libraries are small
+ # enough that they'll be able to "squeeze" into the remaining holes.
+ # The Mac linker isn't so sensitive that moving this library to the
+ # front of the list will cause problems.
+ #
+ # Enough pluses to make this target get prepended to the target's
+ # list of dependencies.
+ 'dependencies+++': [
+ '../third_party/WebKit/Source/WebCore/WebCore.gyp/WebCore.gyp:webcore',
+ ],
+ }],
+ ['OS=="win"', {
+ 'dependencies': [
+ # breakpad is currently only tested on Windows.
+ '../breakpad/breakpad.gyp:*',
+ ],
+ 'conditions': [
+ ['win_use_allocator_shim==1', {
+ 'dependencies': [
+ '<(allocator_target)',
+ ],
+ }],
+ ],
+ 'configurations': {
+ 'Debug_Base': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ # Forcing incremental build off to try to avoid incremental
+ # linking errors on 64-bit bots too. http://crbug.com/52555
+ 'LinkIncremental': '1',
+ },
+ },
+ },
+ },
+ }],
+ ],
+ },
+ {
# Executable that runs each browser test in a new process.
'target_name': 'browser_tests',
'type': 'executable',
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | chrome/common/child_process_logging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698