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

Side by Side Diff: ui/keyboard/webui/BUILD.gn

Issue 493833002: GN: Enable ui/keyboard:keyboard_unittests, fix up webui targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | « ui/keyboard/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 6
7 # GYP version: ui/keyboard/keyboard.gyp:keyboard_mojom_bindings 7 # GYP version: ui/keyboard/keyboard.gyp:keyboard_mojom_bindings
8 mojom("mojo_bindings") { 8 mojom("mojo_bindings") {
9 sources = [ 9 sources = [
10 "keyboard.mojom", 10 "keyboard.mojom",
11 ] 11 ]
12 } 12 }
13
14 # GYP version: part of ui/keyboard/keyboard.gyp:keyboard
15 source_set("webui") {
16 visibility = "//ui/keyboard"
17
18 sources = [
19 "vk_mojo_handler.cc",
20 "vk_mojo_handler.h",
21 "vk_webui_controller.cc",
22 "vk_webui_controller.h",
23 ]
24
25 deps = [
26 ":mojo_bindings",
27 "//base",
28 "//content/public/browser",
29 "//ui/aura",
30 "//ui/base",
31 "//ui/keyboard:resources",
32 "//mojo/public/cpp/bindings",
33 "//mojo/environment:chromium",
34 "//mojo/bindings/js",
35 "//mojo/system",
36 ]
37
38 defines = [ "KEYBOARD_IMPLEMENTATION" ]
39
40 }
OLDNEW
« no previous file with comments | « ui/keyboard/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698