Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: ui/base/ime/BUILD.gn

Issue 2434433006: MacViews: Implement InputMethodMac::CancelComposition. (Closed)
Patch Set: Address comments. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/base/ime/input_method_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ui/base/ime/input_method_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698