OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 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 import("//build/config/ui.gni") |
| 6 import("//mojo/system.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 |
| 9 assert(use_aura) |
| 10 |
| 11 # GYP version: mojo/mojo_examples.gypi:mojo_keyboard |
| 12 shared_library("keyboard") { |
| 13 output_name = "mojo_keyboard" |
| 14 |
| 15 sources = [ |
| 16 "keyboard_delegate.h", |
| 17 "keyboard_view.cc", |
| 18 "keyboard_view.h", |
| 19 "keyboard.cc", |
| 20 "keys.cc", |
| 21 "keys.h", |
| 22 ] |
| 23 |
| 24 deps = [ |
| 25 ":bindings", |
| 26 "//base", |
| 27 "//cc", |
| 28 "//mojo/application", |
| 29 "//mojo/aura", |
| 30 "//mojo/common", |
| 31 "//mojo/services/public/cpp/geometry", |
| 32 "//mojo/services/public/cpp/input_events", |
| 33 "//mojo/services/public/cpp/view_manager", |
| 34 "//mojo/services/public/interfaces/geometry", |
| 35 "//mojo/services/public/interfaces/navigation", |
| 36 "//mojo/services/public/interfaces/view_manager", |
| 37 "//mojo/views", |
| 38 "//third_party/icu", |
| 39 "//ui/aura", |
| 40 "//ui/base", |
| 41 "//ui/compositor", |
| 42 "//ui/gfx", |
| 43 "//ui/gfx/geometry", |
| 44 "//ui/resources", |
| 45 "//ui/resources:ui_test_pak", |
| 46 "//ui/views", |
| 47 "//url", |
| 48 ] + mojo_system_for_shared_library |
| 49 } |
| 50 |
| 51 # GYP version: mojo/mojo_examples.gypi:mojo_keyboard_bindings |
| 52 mojom("bindings") { |
| 53 sources = [ "keyboard.mojom" ] |
| 54 } |
| 55 |
OLD | NEW |