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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/ash.gyp ('k') | ash/touch/touch_hud_projection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/ash_touch_hud.gyp
diff --git a/ash/ash_touch_hud.gyp b/ash/ash_touch_hud.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..f2e5a13233877d7fe79033f257b20f0e14e47f89
--- /dev/null
+++ b/ash/ash_touch_hud.gyp
@@ -0,0 +1,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)',
+ ],
+ },
+ ],
+}
« 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