Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: ash/ash_touch_hud.gyp

Issue 2118223004: ash: Refactor touch hud drawing to ash/touch_hud as a separate component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add dependency Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/ash.gyp ('k') | ash/touch/touch_hud_projection.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 # These files lists are shared with the GN build.
9 'touch_hud_sources': [
10 'touch_hud/ash_touch_hud_export.h',
11 'touch_hud/touch_hud_renderer.cc',
12 'touch_hud/touch_hud_renderer.h',
13 ],
14 },
15 'targets': [
16 {
17 # GN version: //ash/touch_hud
18 'target_name': 'ash_touch_hud',
19 'type': '<(component)',
20 'dependencies': [
21 '../base/base.gyp:base',
22 '../skia/skia.gyp:skia',
23 '../ui/compositor/compositor.gyp:compositor',
24 '../ui/events/events.gyp:events',
25 '../ui/gfx/gfx.gyp:gfx',
26 '../ui/gfx/gfx.gyp:gfx_geometry',
27 '../ui/views/views.gyp:views',
28 ],
29 'defines': [
30 'ASH_TOUCH_HUD_IMPLEMENTATION',
31 ],
32 'sources': [
33 '<@(touch_hud_sources)',
34 ],
35 },
36 ],
37 }
OLDNEW
« no previous file with comments | « ash/ash.gyp ('k') | ash/touch/touch_hud_projection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698