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': 'virtual_keyboard', |
| 12 'type': '<(component)', |
| 13 'dependencies': [ |
| 14 '../../base/base.gyp:base', |
| 15 '../../skia/skia.gyp:skia', |
| 16 ], |
| 17 'defines': [ |
| 18 'VIRTUAL_KEYBOARD_IMPLEMENTATION', |
| 19 ], |
| 20 'sources': [ |
| 21 'virtual_keyboard_controller.cc', |
| 22 'virtual_keyboard_controller.h', |
| 23 'virtual_keyboard_controller_proxy.h', |
| 24 'virtual_keyboard_exports.h', |
| 25 ] |
| 26 }, |
| 27 { |
| 28 'target_name': 'virtual_keyboard_unittests', |
| 29 'type': 'executable', |
| 30 'dependencies': [ |
| 31 '../../base/base.gyp:base', |
| 32 '../../base/base.gyp:run_all_unittests', |
| 33 '../../base/base.gyp:test_support_base', |
| 34 '../../testing/gtest.gyp:gtest', |
| 35 'virtual_keyboard', |
| 36 ], |
| 37 'sources': [ |
| 38 'virtual_keyboard_controller_unittest.cc', |
| 39 ], |
| 40 }, |
| 41 ], |
| 42 } |
OLD | NEW |