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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | ui/keyboard/keyboard_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/keyboard/keyboard.gyp
diff --git a/ui/keyboard/keyboard.gyp b/ui/keyboard/keyboard.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..83bd374dbfca2cc58752c4c6f24b8cf43b153f98
--- /dev/null
+++ b/ui/keyboard/keyboard.gyp
@@ -0,0 +1,53 @@
+# Copyright (c) 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'keyboard',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../skia/skia.gyp:skia',
+ '../aura/aura.gyp:aura',
+ '../ui.gyp:ui',
+ ],
+ 'defines': [
+ 'KEYBOARD_IMPLEMENTATION',
+ ],
+ 'sources': [
+ 'keyboard_controller.cc',
+ 'keyboard_controller.h',
+ 'keyboard_controller_proxy.h',
+ 'keyboard_export.h',
+ 'keyboard_switches.cc',
+ 'keyboard_switches.h',
+ 'keyboard_util.cc',
+ 'keyboard_util.h',
+ ]
+ },
+ {
+ 'target_name': 'keyboard_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../base/base.gyp:test_support_base',
+ '../../skia/skia.gyp:skia',
+ '../../testing/gtest.gyp:gtest',
+ '../aura/aura.gyp:aura',
+ '../aura/aura.gyp:aura_test_support',
+ '../compositor/compositor.gyp:compositor',
+ '../ui.gyp:run_ui_unittests',
+ '../ui.gyp:ui',
+ 'keyboard',
+ ],
+ 'sources': [
+ 'keyboard_controller_unittest.cc',
+ ],
+ },
+ ],
+}
« 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