Chromium Code Reviews| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 114 "//ui/display", | 114 "//ui/display", |
| 115 "//ui/events", | 115 "//ui/events", |
| 116 "//ui/gfx", | 116 "//ui/gfx", |
| 117 "//ui/gfx/geometry", | 117 "//ui/gfx/geometry", |
| 118 "//ui/gfx/range", | 118 "//ui/gfx/range", |
| 119 "//url", | 119 "//url", |
| 120 ] | 120 ] |
| 121 | 121 |
| 122 public_deps = [ | 122 public_deps = [ |
| 123 ":text_input_types", | 123 ":text_input_types", |
| 124 "//skia", | |
|
sadrul
2016/11/29 20:51:35
Why is this needed?
Hadi
2016/11/29 21:33:37
composition_underline.h uses SkColor in a public f
| |
| 124 ] | 125 ] |
| 125 | 126 |
| 126 if (!use_aura || (!is_linux && !use_ozone)) { | 127 if (!use_aura || (!is_linux && !use_ozone)) { |
| 127 sources -= [ | 128 sources -= [ |
| 128 "input_method_auralinux.cc", | 129 "input_method_auralinux.cc", |
| 129 "input_method_auralinux.h", | 130 "input_method_auralinux.h", |
| 130 ] | 131 ] |
| 131 } | 132 } |
| 132 | 133 |
| 133 if (use_aura && is_android) { | 134 if (use_aura && is_android) { |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 198 libs = [ "AppKit.framework" ] | 199 libs = [ "AppKit.framework" ] |
| 199 } | 200 } |
| 200 | 201 |
| 201 if (use_ozone) { | 202 if (use_ozone) { |
| 202 deps += [ | 203 deps += [ |
| 203 "//ui/events/ozone:events_ozone_layout", | 204 "//ui/events/ozone:events_ozone_layout", |
| 204 "//ui/ozone", | 205 "//ui/ozone", |
| 205 ] | 206 ] |
| 206 } | 207 } |
| 207 } | 208 } |
| OLD | NEW |