Index: ui/virtual_keyboard/virtual_keyboard.gyp |
diff --git a/ui/virtual_keyboard/virtual_keyboard.gyp b/ui/virtual_keyboard/virtual_keyboard.gyp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..385cdc8a24e1273456608335000fa295491b0865 |
--- /dev/null |
+++ b/ui/virtual_keyboard/virtual_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': 'virtual_keyboard', |
+ 'type': '<(component)', |
+ 'dependencies': [ |
+ '../../base/base.gyp:base', |
+ '../../skia/skia.gyp:skia', |
+ ], |
+ 'defines': [ |
+ 'VIRTUAL_KEYBOARD_IMPLEMENTATION', |
+ ], |
+ 'sources': [ |
+ 'virtual_keyboard_controller.cc', |
+ 'virtual_keyboard_controller.h', |
+ 'virtual_keyboard_controller_proxy.h', |
+ 'virtual_keyboard_exports.h', |
+ ] |
+ }, |
+ { |
+ 'target_name': 'virtual_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', |
+ 'virtual_keyboard', |
+ ], |
+ 'sources': [ |
+ 'virtual_keyboard_controller_unittest.cc', |
+ ], |
+ }, |
+ ], |
+} |