| 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", |
| 11 "clip_animation.cc", | 11 "clip_animation.cc", |
| 12 "clip_animation.h", | 12 "clip_animation.h", |
| 13 "fast_out_slow_in_interpolator.cc", | 13 "fast_out_slow_in_interpolator.cc", |
| 14 "fast_out_slow_in_interpolator.h", | 14 "fast_out_slow_in_interpolator.h", |
| 15 "key_layout.cc", | 15 "key_layout.cc", |
| 16 "key_layout.h", | 16 "key_layout.h", |
| 17 "keyboard_service_impl.cc", | 17 "keyboard_service_impl.cc", |
| 18 "keyboard_service_impl.h", | 18 "keyboard_service_impl.h", |
| 19 "main.cc", | 19 "main.cc", |
| 20 "material_splash_animation.cc", | 20 "material_splash_animation.cc", |
| 21 "material_splash_animation.h", | 21 "material_splash_animation.h", |
| 22 "motion_decay_animation.cc", | 22 "motion_decay_animation.cc", |
| 23 "motion_decay_animation.h", | 23 "motion_decay_animation.h", |
| 24 "predictor.cc", |
| 25 "predictor.h", |
| 26 "text_update_key.cc", |
| 27 "text_update_key.h", |
| 24 "time_interpolator.h", | 28 "time_interpolator.h", |
| 25 "view_observer_delegate.cc", | 29 "view_observer_delegate.cc", |
| 26 "view_observer_delegate.h", | 30 "view_observer_delegate.h", |
| 27 ] | 31 ] |
| 28 | 32 |
| 29 deps = [ | 33 deps = [ |
| 30 ":action_icon", | 34 ":action_icon", |
| 31 ":delete_icon", | 35 ":delete_icon", |
| 32 ":lower_case_icon", | 36 ":lower_case_icon", |
| 33 ":upper_case_icon", | 37 ":upper_case_icon", |
| 34 "//base", | 38 "//base", |
| 35 "//mojo/application", | 39 "//mojo/application", |
| 36 "//mojo/public/cpp/bindings", | 40 "//mojo/public/cpp/bindings", |
| 37 "//mojo/gpu", | 41 "//mojo/gpu", |
| 38 "//mojo/public/c/gles2", | 42 "//mojo/public/c/gles2", |
| 39 "//mojo/public/cpp/bindings:callback", | 43 "//mojo/public/cpp/bindings:callback", |
| 40 "//mojo/public/cpp/utility", | 44 "//mojo/public/cpp/utility", |
| 41 "//mojo/public/interfaces/application", | 45 "//mojo/public/interfaces/application", |
| 42 "//mojo/services/geometry/public/cpp", | 46 "//mojo/services/geometry/public/cpp", |
| 43 "//mojo/services/geometry/public/interfaces", | 47 "//mojo/services/geometry/public/interfaces", |
| 44 "//mojo/services/keyboard/public/interfaces", | 48 "//mojo/services/keyboard/public/interfaces", |
| 49 "//mojo/services/prediction/public/interfaces", |
| 45 "//mojo/services/surfaces/public/cpp", | 50 "//mojo/services/surfaces/public/cpp", |
| 46 "//mojo/services/surfaces/public/interfaces", | 51 "//mojo/services/surfaces/public/interfaces", |
| 47 "//mojo/services/surfaces/public/interfaces:surface_id", | 52 "//mojo/services/surfaces/public/interfaces:surface_id", |
| 48 "//mojo/services/view_manager/public/cpp", | 53 "//mojo/services/view_manager/public/cpp", |
| 49 "//mojo/skia", | 54 "//mojo/skia", |
| 50 "//skia", | 55 "//skia", |
| 51 "//ui/gfx", | 56 "//ui/gfx", |
| 52 "//ui/gfx/geometry", | 57 "//ui/gfx/geometry", |
| 53 ] | 58 ] |
| 54 } | 59 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 69 source = "res/ArrowDown.png" | 74 source = "res/ArrowDown.png" |
| 70 namespace = "keyboard_native" | 75 namespace = "keyboard_native" |
| 71 variable = "kLowerCaseIcon" | 76 variable = "kLowerCaseIcon" |
| 72 } | 77 } |
| 73 | 78 |
| 74 embed_file("upper_case_icon") { | 79 embed_file("upper_case_icon") { |
| 75 source = "res/ArrowUp.png" | 80 source = "res/ArrowUp.png" |
| 76 namespace = "keyboard_native" | 81 namespace = "keyboard_native" |
| 77 variable = "kUpperCaseIcon" | 82 variable = "kUpperCaseIcon" |
| 78 } | 83 } |
| OLD | NEW |