aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/dm.gyp
blob: d5f71cf791b19c7cf11c4020b8d21f20a00392c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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',
              ],
              'dependencies': [
                'tools.gyp:android_utils',
              ],
          }],
        ],
    }]
}