skia2/gyp/dm.gyp
tomhudson 3c8ceb7350 Simplify linkages to Android framework internals
We've migrated SkHwuiRenderer into the Android Framework as
android::uirenderer::TestWindowContext in response to an internal
bug; we now delete that class and change our build references here.

R=djsollen@google.com

Review URL: https://codereview.chromium.org/1407053009
2015-10-26 07:21:32 -07:00

36 lines
925 B
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).
{
'includes': [ 'apptype_console.gypi' ],
'targets': [{
'target_name': 'dm',
'type': 'executable',
'includes': [
'dm.gypi',
],
'conditions': [
['skia_android_framework', {
'libraries': [
'-lskia',
'-landroid',
'-lhwui',
'-lutils',
],
'include_dirs': [
'../../../frameworks/base/libs/hwui/',
],
'sources': [
'../dm/DMSrcSinkAndroid.cpp',
],
'dependencies': [
'utils.gyp:android_utils',
],
}],
],
}]
}