| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 mojom = "//services/ui/public/interfaces/ime/ime.mojom" | 5 mojom = "//services/ui/public/interfaces/ime/ime.mojom" |
| 6 public_headers = [ | 6 public_headers = [ |
| 7 "//ui/base/ime/candidate_window.h", |
| 7 "//ui/base/ime/composition_text.h", | 8 "//ui/base/ime/composition_text.h", |
| 8 "//ui/base/ime/composition_underline.h", | 9 "//ui/base/ime/composition_underline.h", |
| 9 "//ui/base/ime/text_input_mode.h", | 10 "//ui/base/ime/text_input_mode.h", |
| 10 "//ui/base/ime/text_input_type.h", | 11 "//ui/base/ime/text_input_type.h", |
| 11 ] | 12 ] |
| 12 traits_headers = [ "//services/ui/public/interfaces/ime/ime_struct_traits.h" ] | 13 traits_headers = [ "//services/ui/public/interfaces/ime/ime_struct_traits.h" ] |
| 13 sources = [ | 14 sources = [ |
| 14 "//services/ui/public/interfaces/ime/ime_struct_traits.cc", | 15 "//services/ui/public/interfaces/ime/ime_struct_traits.cc", |
| 15 ] | 16 ] |
| 16 public_deps = [ | 17 public_deps = [ |
| 17 "//ui/base/ime", | 18 "//ui/base/ime", |
| 18 ] | 19 ] |
| 19 deps = [ | 20 deps = [ |
| 20 "//ui/gfx/range", | 21 "//ui/gfx/range", |
| 21 ] | 22 ] |
| 22 | 23 |
| 23 type_mappings = [ | 24 type_mappings = [ |
| 25 "ui.mojom.CandidateWindowEntry=ui::CandidateWindow::Entry", |
| 26 "ui.mojom.CandidateWindowProperties=ui::CandidateWindow::CandidateWindowProper
ty", |
| 24 "ui.mojom.CompositionText=ui::CompositionText", | 27 "ui.mojom.CompositionText=ui::CompositionText", |
| 25 "ui.mojom.CompositionUnderline=ui::CompositionUnderline", | 28 "ui.mojom.CompositionUnderline=ui::CompositionUnderline", |
| 26 "ui.mojom.TextInputMode=ui::TextInputMode", | 29 "ui.mojom.TextInputMode=ui::TextInputMode", |
| 27 "ui.mojom.TextInputType=ui::TextInputType", | 30 "ui.mojom.TextInputType=ui::TextInputType", |
| 28 ] | 31 ] |
| OLD | NEW |