OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2013 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 }, |
| 9 'targets': [ |
| 10 { |
| 11 'target_name': 'keyboard', |
| 12 'type': '<(component)', |
| 13 'dependencies': [ |
| 14 '../../base/base.gyp:base', |
| 15 '../../skia/skia.gyp:skia', |
| 16 '../aura/aura.gyp:aura', |
| 17 '../ui.gyp:ui', |
| 18 ], |
| 19 'defines': [ |
| 20 'KEYBOARD_IMPLEMENTATION', |
| 21 ], |
| 22 'sources': [ |
| 23 'keyboard_controller.cc', |
| 24 'keyboard_controller.h', |
| 25 'keyboard_controller_proxy.h', |
| 26 'keyboard_export.h', |
| 27 'keyboard_switches.cc', |
| 28 'keyboard_switches.h', |
| 29 'keyboard_util.cc', |
| 30 'keyboard_util.h', |
| 31 ] |
| 32 }, |
| 33 { |
| 34 'target_name': 'keyboard_unittests', |
| 35 'type': 'executable', |
| 36 'dependencies': [ |
| 37 '../../base/base.gyp:base', |
| 38 '../../base/base.gyp:test_support_base', |
| 39 '../../skia/skia.gyp:skia', |
| 40 '../../testing/gtest.gyp:gtest', |
| 41 '../aura/aura.gyp:aura', |
| 42 '../aura/aura.gyp:aura_test_support', |
| 43 '../compositor/compositor.gyp:compositor', |
| 44 '../ui.gyp:run_ui_unittests', |
| 45 '../ui.gyp:ui', |
| 46 'keyboard', |
| 47 ], |
| 48 'sources': [ |
| 49 'keyboard_controller_unittest.cc', |
| 50 ], |
| 51 }, |
| 52 ], |
| 53 } |
OLD | NEW |