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

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: fix upstream 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
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | ui/keyboard/keyboard_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '../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 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | ui/keyboard/keyboard_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698