| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/cpp", | 46 "//mojo/services/geometry/cpp", |
| 47 "//mojo/services/geometry/interfaces", | 47 "//mojo/services/geometry/interfaces", |
| 48 "//mojo/services/keyboard/interfaces", | 48 "//mojo/services/keyboard/interfaces", |
| 49 "//mojo/services/prediction/interfaces", | 49 "//mojo/services/prediction/interfaces", |
| 50 "//mojo/services/surfaces/cpp", | 50 "//mojo/services/surfaces/cpp", |
| 51 "//mojo/services/surfaces/interfaces", | 51 "//mojo/services/surfaces/interfaces", |
| 52 "//mojo/services/surfaces/interfaces:surface_id", | 52 "//mojo/services/surfaces/interfaces:surface_id", |
| 53 "//mojo/services/view_manager/public/cpp", | 53 "//mojo/services/view_manager/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 ] |
| 59 } | 59 } |
| 60 | 60 |
| 61 embed_file("action_icon") { | 61 embed_file("action_icon") { |
| 62 source = "res/Emoticon.png" | 62 source = "res/Emoticon.png" |
| 63 namespace = "keyboard_native" | 63 namespace = "keyboard_native" |
| (...skipping 10 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 |