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

Side by Side Diff: mojo/examples/keyboard/BUILD.gn

Issue 640893003: Move mojo/services/public/cpp TypeConverters to mojo/converters. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Restore the directory and component structures and target names. Created 6 years, 2 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
« no previous file with comments | « mojo/examples/compositor_app/compositor_app.cc ('k') | mojo/examples/media_viewer/BUILD.gn » ('j') | 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 7
8 assert(use_aura) 8 assert(use_aura)
9 9
10 # GYP version: mojo/mojo_examples.gypi:mojo_keyboard 10 # GYP version: mojo/mojo_examples.gypi:mojo_keyboard
11 shared_library("keyboard") { 11 shared_library("keyboard") {
12 output_name = "mojo_keyboard" 12 output_name = "mojo_keyboard"
13 13
14 sources = [ 14 sources = [
15 "keyboard_delegate.h", 15 "keyboard_delegate.h",
16 "keyboard_view.cc", 16 "keyboard_view.cc",
17 "keyboard_view.h", 17 "keyboard_view.h",
18 "keyboard.cc", 18 "keyboard.cc",
19 "keys.cc", 19 "keys.cc",
20 "keys.h", 20 "keys.h",
21 ] 21 ]
22 22
23 deps = [ 23 deps = [
24 ":bindings", 24 ":bindings",
25 "//base", 25 "//base",
26 "//cc", 26 "//cc",
27 "//mojo/application", 27 "//mojo/application",
28 "//mojo/aura", 28 "//mojo/aura",
29 "//mojo/common", 29 "//mojo/common",
30 "//mojo/converters/geometry",
31 "//mojo/converters/input_events",
30 "//mojo/public/c/system:for_shared_library", 32 "//mojo/public/c/system:for_shared_library",
31 "//mojo/services/public/cpp/geometry",
32 "//mojo/services/public/cpp/input_events",
33 "//mojo/services/public/cpp/view_manager", 33 "//mojo/services/public/cpp/view_manager",
34 "//mojo/services/public/interfaces/geometry", 34 "//mojo/services/public/interfaces/geometry",
35 "//mojo/services/public/interfaces/navigation", 35 "//mojo/services/public/interfaces/navigation",
36 "//mojo/services/public/interfaces/view_manager", 36 "//mojo/services/public/interfaces/view_manager",
37 "//mojo/views", 37 "//mojo/views",
38 "//third_party/icu", 38 "//third_party/icu",
39 "//ui/aura", 39 "//ui/aura",
40 "//ui/base", 40 "//ui/base",
41 "//ui/compositor", 41 "//ui/compositor",
42 "//ui/gfx", 42 "//ui/gfx",
43 "//ui/gfx/geometry", 43 "//ui/gfx/geometry",
44 "//ui/resources", 44 "//ui/resources",
45 "//ui/resources:ui_test_pak", 45 "//ui/resources:ui_test_pak",
46 "//ui/views", 46 "//ui/views",
47 "//url", 47 "//url",
48 ] 48 ]
49 } 49 }
50 50
51 # GYP version: mojo/mojo_examples.gypi:mojo_keyboard_bindings 51 # GYP version: mojo/mojo_examples.gypi:mojo_keyboard_bindings
52 mojom("bindings") { 52 mojom("bindings") {
53 sources = [ "keyboard.mojom" ] 53 sources = [ "keyboard.mojom" ]
54 } 54 }
55 55
OLDNEW
« no previous file with comments | « mojo/examples/compositor_app/compositor_app.cc ('k') | mojo/examples/media_viewer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698