skia2/gyp/tests.gypi
halcanary 9f8754f591 Remove experimental/PdfViewer
Motivation: maintaining this code doesn't seem worth the time,
since no one seems to be using it.  If someone wants to use it
in the future, just revert this CL.

Review URL: https://codereview.chromium.org/1266093003
2015-08-04 14:08:44 -07:00

63 lines
1.7 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.
# Common gypi for unit tests.
{
'include_dirs': [
'../include/private',
'../src/codec',
'../src/core',
'../src/effects',
'../src/image',
'../src/lazy',
'../src/images',
'../src/pathops',
'../src/pdf',
'../src/ports',
'../src/pipe/utils',
'../src/utils',
'../src/utils/debugger',
],
'dependencies': [
'experimental.gyp:experimental',
'flags.gyp:flags_common',
'pdf.gyp:pdf',
'skia_lib.gyp:skia_lib',
'tools.gyp:picture_utils',
'tools.gyp:resources',
'tools.gyp:sk_tool_utils',
],
'conditions': [
[ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "android"]', {
'sources!': [ '../tests/FontMgrAndroidParserTest.cpp', ],
}],
[ 'skia_android_framework == 1', {
'libraries': [
'-ldl',
],
}],
],
'sources': [
'../tests/Test.h',
'<!@(python find.py ../tests "*.c*")',
'../src/utils/debugger/SkDrawCommand.h',
'../src/utils/debugger/SkDrawCommand.cpp',
'../src/utils/debugger/SkDebugCanvas.h',
'../src/utils/debugger/SkDebugCanvas.cpp',
'../src/utils/debugger/SkObjectParser.h',
'../src/utils/debugger/SkObjectParser.cpp',
'../src/pipe/utils/SamplePipeControllers.cpp',
],
'sources!': [
'../tests/SkpSkGrTest.cpp',
'../tests/skia_test.cpp',
'../tests/PathOpsAngleIdeas.cpp',
'../tests/PathOpsBattles.cpp',
'../tests/PathOpsCubicLineIntersectionIdeas.cpp',
'../tests/PathOpsDebug.cpp',
'../tests/PathOpsOpLoopThreadedTest.cpp',
'../tests/PathOpsSkpClipTest.cpp',
],
}