skia2/gyp/pathops_skpclip.gyp
Mike Reed d50fd8c189 remove dead file: PathOpsSkpClipTest.cpp
BUG=skia:

Change-Id: If11dd014b14aa902082f93bf678b9d0f1b2e1c34
Reviewed-on: https://skia-review.googlesource.com/6893
Commit-Queue: Mike Reed <reed@google.com>
Reviewed-by: Mike Klein <mtklein@chromium.org>
2017-01-11 19:42:17 +00:00

50 lines
1.0 KiB
Python
Executable File

# 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 file to build pathops skp clip test.
{
'includes': [
'apptype_console.gypi',
],
'targets': [
{
'target_name': 'pathops_skpclip',
'type': 'executable',
'include_dirs': [
'../include/private',
'../src/core',
'../src/effects',
'../src/lazy',
'../src/pathops',
'../src/utils',
],
'dependencies': [
'flags.gyp:flags',
'skia_lib.gyp:skia_lib',
'tools.gyp:crash_handler',
'tools.gyp:resources',
],
'sources': [
'../tests/PathOpsDebug.cpp',
],
'conditions': [
[ 'skia_android_framework == 1', {
'libraries': [
'-lskia',
],
'libraries!': [
'-lz',
'-llog',
],
}],
[ 'skia_gpu == 1', {
'include_dirs': [
'../src/gpu',
],
}],
],
},
],
}