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

Side by Side Diff: ui/keyboard/keyboard.gyp

Issue 13164002: Create and show the virtual keyboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove fixme Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
(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 ],
17 'defines': [
18 'KEYBOARD_IMPLEMENTATION',
19 ],
20 'sources': [
21 'keyboard_controller.cc',
22 'keyboard_controller.h',
23 'keyboard_controller_proxy.h',
24 'keyboard_exports.h',
25 ]
26 },
27 {
28 'target_name': '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 'keyboard',
36 ],
37 'sources': [
38 'keyboard_controller_unittest.cc',
39 ],
40 },
41 ],
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698