| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 source_set("text_input_types") { | 8 source_set("text_input_types") { |
| 9 sources = [ | 9 sources = [ |
| 10 "text_input_flags.h", | 10 "text_input_flags.h", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "//base", | 107 "//base", |
| 108 "//base:i18n", | 108 "//base:i18n", |
| 109 "//base/third_party/dynamic_annotations", | 109 "//base/third_party/dynamic_annotations", |
| 110 "//net", | 110 "//net", |
| 111 "//third_party/icu", | 111 "//third_party/icu", |
| 112 "//ui/base", | 112 "//ui/base", |
| 113 "//ui/display", | 113 "//ui/display", |
| 114 "//ui/events", | 114 "//ui/events", |
| 115 "//ui/gfx", | 115 "//ui/gfx", |
| 116 "//ui/gfx/geometry", | 116 "//ui/gfx/geometry", |
| 117 "//ui/gfx/range", |
| 117 "//url", | 118 "//url", |
| 118 ] | 119 ] |
| 119 | 120 |
| 120 public_deps = [ | 121 public_deps = [ |
| 121 ":text_input_types", | 122 ":text_input_types", |
| 122 ] | 123 ] |
| 123 | 124 |
| 124 if (!use_aura || (!is_linux && !use_ozone)) { | 125 if (!use_aura || (!is_linux && !use_ozone)) { |
| 125 sources -= [ | 126 sources -= [ |
| 126 "input_method_auralinux.cc", | 127 "input_method_auralinux.cc", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 libs = [ "imm32.lib" ] | 184 libs = [ "imm32.lib" ] |
| 184 } | 185 } |
| 185 | 186 |
| 186 if (use_ozone) { | 187 if (use_ozone) { |
| 187 deps += [ | 188 deps += [ |
| 188 "//ui/events/ozone:events_ozone_layout", | 189 "//ui/events/ozone:events_ozone_layout", |
| 189 "//ui/ozone", | 190 "//ui/ozone", |
| 190 ] | 191 ] |
| 191 } | 192 } |
| 192 } | 193 } |
| OLD | NEW |