blob: 2a4c1c2c4311f88dd90a21f12bc0f58fe8e3076d [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',
tomhudsoneebc39a2015-02-23 12:18:05 -080020 '-lhwui',
21 '-lutils',
22 ],
23 'include_dirs': [
24 '../../../frameworks/base/libs/hwui/',
tomhudsoneebc39a2015-02-23 12:18:05 -080025 ],
26 'sources': [
27 '../dm/DMSrcSinkAndroid.cpp',
28 ],
tomhudson48dc6dc2015-03-24 12:46:40 -070029 'dependencies': [
30 'utils.gyp:android_utils',
31 ],
mtklein30bf3e22014-06-03 13:57:14 -070032 }],
commit-bot@chromium.org120c9992014-05-16 18:11:51 +000033 ],
mtklein@google.comd36522d2013-10-16 13:02:15 +000034 }]
35}