forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathash_touch_hud.gyp
37 lines (36 loc) · 1000 Bytes
/
ash_touch_hud.gyp
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
27
28
29
30
31
32
33
34
35
36
37
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
'chromium_code': 1,
# These files lists are shared with the GN build.
'touch_hud_sources': [
'touch_hud/ash_touch_hud_export.h',
'touch_hud/touch_hud_renderer.cc',
'touch_hud/touch_hud_renderer.h',
],
},
'targets': [
{
# GN version: //ash/touch_hud
'target_name': 'ash_touch_hud',
'type': '<(component)',
'dependencies': [
'../base/base.gyp:base',
'../skia/skia.gyp:skia',
'../ui/compositor/compositor.gyp:compositor',
'../ui/events/events.gyp:events',
'../ui/gfx/gfx.gyp:gfx',
'../ui/gfx/gfx.gyp:gfx_geometry',
'../ui/views/views.gyp:views',
],
'defines': [
'ASH_TOUCH_HUD_IMPLEMENTATION',
],
'sources': [
'<@(touch_hud_sources)',
],
},
],
}