0590fa549d
This way you don't need to set LSAN_SUPPRESSIONS in your environment... sort of foolproof this way. I _think_ the strdup() business from skia:2916 is actually rooted in libfontconfig, so one suppression should cover both old ones. I'll leave the file empty until I clean up mention of it in bot recipes. BUG=skia:2916 GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2295153003 CQ_INCLUDE_TRYBOTS=master.client.skia:Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Debug-ASAN-Trybot Review-Url: https://codereview.chromium.org/2295153003
63 lines
1.5 KiB
Python
63 lines
1.5 KiB
Python
# Copyright 2015 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
# GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2).
|
|
{
|
|
'include_dirs': [
|
|
'../dm',
|
|
'../gm',
|
|
'../include/private',
|
|
'../src/core',
|
|
'../src/effects',
|
|
'../src/images',
|
|
'../src/lazy',
|
|
'../src/utils',
|
|
'../tools/debugger',
|
|
'../tests',
|
|
],
|
|
'dependencies': [
|
|
'etc1.gyp:libetc1',
|
|
'flags.gyp:flags',
|
|
'jsoncpp.gyp:jsoncpp',
|
|
'libpng.gyp:libpng',
|
|
'skia_lib.gyp:skia_lib',
|
|
'sksl.gyp:sksl',
|
|
'svg.gyp:svg',
|
|
'svg.gyp:svgdom',
|
|
'tools.gyp:crash_handler',
|
|
'tools.gyp:picture_utils',
|
|
'tools.gyp:proc_stats',
|
|
'tools.gyp:sk_tool_utils',
|
|
'tools.gyp:url_data_manager',
|
|
'tools.gyp:timer',
|
|
'xml.gyp:xml',
|
|
'xps.gyp:xps',
|
|
],
|
|
'includes': [
|
|
'gmslides.gypi',
|
|
'pathops_unittest.gypi',
|
|
'tests.gypi',
|
|
],
|
|
'sources': [
|
|
'../dm/DM.cpp',
|
|
'../dm/DMSrcSink.cpp',
|
|
'../dm/DMJsonWriter.cpp',
|
|
'../gm/gm.cpp',
|
|
|
|
'../src/utils/SkMultiPictureDocumentReader.cpp',
|
|
'../tools/LsanSuppressions.cpp',
|
|
'../tools/debugger/SkDebugCanvas.cpp',
|
|
'../tools/debugger/SkDrawCommand.cpp',
|
|
'../tools/debugger/SkJsonWriteBuffer.cpp',
|
|
'../tools/debugger/SkObjectParser.cpp',
|
|
'../tools/debugger/SkOverdrawMode.cpp',
|
|
'../tools/debugger/SkOverdrawMode.h',
|
|
],
|
|
'conditions': [
|
|
[ 'skia_gpu == 1', {
|
|
'dependencies': [ 'gputest.gyp:skgputest' ],
|
|
}],
|
|
],
|
|
}
|