e71dc3fd0d
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1688383005 Review URL: https://codereview.chromium.org/1688383005
31 lines
773 B
Python
31 lines
773 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': [
|
|
'skia_static.a',
|
|
'hwui_static.a',
|
|
],
|
|
'sources': [
|
|
'../dm/DMSrcSinkAndroid.cpp',
|
|
],
|
|
'dependencies': [
|
|
'tools.gyp:android_utils',
|
|
],
|
|
}],
|
|
],
|
|
}]
|
|
}
|