OLD | NEW |
(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 } |
OLD | NEW |