skia2/gyp/tests.gyp
mtklein bec3634a4a Android: remove -lcutils dependency
I believe we no longer depend on this after we ported our atomics to __sync.

Tested by running android_ninja.

BUG=skia:
R=scroggo@google.com, mtklein@google.com

Author: mtklein@chromium.org

Review URL: https://codereview.chromium.org/318493002
2014-06-03 15:38:18 -07:00

36 lines
655 B
Python

# GYP file to build unit tests.
{
'includes': [
'apptype_console.gypi',
],
'targets': [
{
'target_name': 'tests',
'type': 'executable',
'includes': [
'pathops_unittest.gypi',
'tests.gypi',
],
'sources': [
'../tests/skia_test.cpp',
],
'conditions': [
[ 'skia_android_framework == 1', {
'libraries': [
'-lskia',
],
'libraries!': [
'-lz',
'-llog',
],
}],
[ 'skia_gpu == 1', {
'include_dirs': [
'../src/gpu',
],
}],
],
},
],
}