OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 import("//mojo/tools/embed/rules.gni") | 6 import("//mojo/tools/embed/rules.gni") |
7 | 7 |
8 mojo_native_application("keyboard_native") { | 8 mojo_native_application("keyboard_native") { |
9 sources = [ | 9 sources = [ |
10 "animation.h", | 10 "animation.h", |
(...skipping 25 matching lines...) Expand all Loading... |
36 ":lower_case_icon", | 36 ":lower_case_icon", |
37 ":upper_case_icon", | 37 ":upper_case_icon", |
38 "//base", | 38 "//base", |
39 "//mojo/application", | 39 "//mojo/application", |
40 "//mojo/public/cpp/bindings", | 40 "//mojo/public/cpp/bindings", |
41 "//mojo/gpu", | 41 "//mojo/gpu", |
42 "//mojo/public/c/gpu", | 42 "//mojo/public/c/gpu", |
43 "//mojo/public/cpp/bindings:callback", | 43 "//mojo/public/cpp/bindings:callback", |
44 "//mojo/public/cpp/utility", | 44 "//mojo/public/cpp/utility", |
45 "//mojo/public/interfaces/application", | 45 "//mojo/public/interfaces/application", |
46 "//mojo/services/geometry/public/cpp", | 46 "//mojo/services/geometry/cpp", |
47 "//mojo/services/geometry/public/interfaces", | 47 "//mojo/services/geometry/interfaces", |
48 "//mojo/services/keyboard/public/interfaces", | 48 "//mojo/services/keyboard/interfaces", |
49 "//mojo/services/prediction/public/interfaces", | 49 "//mojo/services/prediction/public/interfaces", |
50 "//mojo/services/surfaces/public/cpp", | 50 "//mojo/services/surfaces/public/cpp", |
51 "//mojo/services/surfaces/public/interfaces", | 51 "//mojo/services/surfaces/public/interfaces", |
52 "//mojo/services/surfaces/public/interfaces:surface_id", | 52 "//mojo/services/surfaces/public/interfaces:surface_id", |
53 "//mojo/services/view_manager/public/cpp", | 53 "//mojo/services/view_manager/public/cpp", |
54 "//mojo/skia", | 54 "//mojo/skia", |
55 "//skia", | 55 "//skia", |
56 "//ui/gfx", | 56 "//ui/gfx", |
57 "//ui/gfx/geometry", | 57 "//ui/gfx/geometry", |
58 ] | 58 ] |
(...skipping 15 matching lines...) Expand all Loading... |
74 source = "res/ArrowDown.png" | 74 source = "res/ArrowDown.png" |
75 namespace = "keyboard_native" | 75 namespace = "keyboard_native" |
76 variable = "kLowerCaseIcon" | 76 variable = "kLowerCaseIcon" |
77 } | 77 } |
78 | 78 |
79 embed_file("upper_case_icon") { | 79 embed_file("upper_case_icon") { |
80 source = "res/ArrowUp.png" | 80 source = "res/ArrowUp.png" |
81 namespace = "keyboard_native" | 81 namespace = "keyboard_native" |
82 variable = "kUpperCaseIcon" | 82 variable = "kUpperCaseIcon" |
83 } | 83 } |
OLD | NEW |