blob: 261163f242789bf64a316aadbcca32d31e5c2807 [file] [log] [blame]
scroggo3e562272015-03-25 10:22:41 -07001# Copyright 2015 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
mtklein@google.comd36522d2013-10-16 13:02:15 +00005# GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2).
mtklein@google.comd36522d2013-10-16 13:02:15 +00006{
7 'includes': [ 'apptype_console.gypi' ],
8
9 'targets': [{
10 'target_name': 'dm',
11 'type': 'executable',
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000012 'includes': [
caryclark17f0b6d2014-07-22 10:15:34 -070013 'dm.gypi',
mtklein@google.comd36522d2013-10-16 13:02:15 +000014 ],
commit-bot@chromium.org120c9992014-05-16 18:11:51 +000015 'conditions': [
mtklein30bf3e22014-06-03 13:57:14 -070016 ['skia_android_framework', {
tomhudsoneebc39a2015-02-23 12:18:05 -080017 'libraries': [
18 '-lskia',
19 '-landroid',
20 '-lgui',
21 '-lhwui',
22 '-lutils',
23 ],
24 'include_dirs': [
25 '../../../frameworks/base/libs/hwui/',
26 '../../../frameworks/native/include/',
27 ],
28 'sources': [
29 '../dm/DMSrcSinkAndroid.cpp',
30 ],
tomhudson48dc6dc2015-03-24 12:46:40 -070031 'dependencies': [
32 'utils.gyp:android_utils',
33 ],
mtklein30bf3e22014-06-03 13:57:14 -070034 }],
commit-bot@chromium.org120c9992014-05-16 18:11:51 +000035 ],
mtklein@google.comd36522d2013-10-16 13:02:15 +000036 }]
37}