| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 deps += [ "//ui/gfx/x" ] | 187 deps += [ "//ui/gfx/x" ] |
| 188 } | 188 } |
| 189 | 189 |
| 190 if (is_win) { | 190 if (is_win) { |
| 191 cflags = [ "/wd4324" ] # Structure was padded due to __declspec(align()), w
hich is | 191 cflags = [ "/wd4324" ] # Structure was padded due to __declspec(align()), w
hich is |
| 192 # uninteresting. | 192 # uninteresting. |
| 193 | 193 |
| 194 libs = [ "imm32.lib" ] | 194 libs = [ "imm32.lib" ] |
| 195 } | 195 } |
| 196 | 196 |
| 197 if (is_mac) { |
| 198 libs = [ "AppKit.framework" ] |
| 199 } |
| 200 |
| 197 if (use_ozone) { | 201 if (use_ozone) { |
| 198 deps += [ | 202 deps += [ |
| 199 "//ui/events/ozone:events_ozone_layout", | 203 "//ui/events/ozone:events_ozone_layout", |
| 200 "//ui/ozone", | 204 "//ui/ozone", |
| 201 ] | 205 ] |
| 202 } | 206 } |
| 203 } | 207 } |
| OLD | NEW |