Index: ui/keyboard/keyboard.gyp |
diff --git a/ui/keyboard/keyboard.gyp b/ui/keyboard/keyboard.gyp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e84abb8cd3b88547fb3e04c5db52e0af86497a62 |
--- /dev/null |
+++ b/ui/keyboard/keyboard.gyp |
@@ -0,0 +1,42 @@ |
+# 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', |
+ ], |
+ 'defines': [ |
+ 'KEYBOARD_IMPLEMENTATION', |
+ ], |
+ 'sources': [ |
+ 'keyboard_controller.cc', |
+ 'keyboard_controller.h', |
+ 'keyboard_controller_proxy.h', |
+ 'keyboard_exports.h', |
+ ] |
+ }, |
+ { |
+ 'target_name': 'keyboard_unittests', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ '../../base/base.gyp:base', |
+ '../../base/base.gyp:run_all_unittests', |
+ '../../base/base.gyp:test_support_base', |
+ '../../testing/gtest.gyp:gtest', |
+ 'keyboard', |
+ ], |
+ 'sources': [ |
+ 'keyboard_controller_unittest.cc', |
+ ], |
+ }, |
+ ], |
+} |