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

Side by Side Diff: ui/gfx/BUILD.gn

Issue 2348143003: MacViews: Implement Force Touch/Mac dictionary lookup for Textfields. (Closed)
Patch Set: --- Created 4 years, 3 months 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/gfx/native_widget_types.h » ('j') | ui/gfx/render_text.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 8
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 ] 264 ]
265 265
266 # Text rendering conditions (complicated so separated out). 266 # Text rendering conditions (complicated so separated out).
267 if (use_aura || is_mac) { 267 if (use_aura || is_mac) {
268 # Mac doesn't use RenderTextHarfBuzz by default yet. 268 # Mac doesn't use RenderTextHarfBuzz by default yet.
269 sources += [ 269 sources += [
270 "harfbuzz_font_skia.cc", 270 "harfbuzz_font_skia.cc",
271 "harfbuzz_font_skia.h", 271 "harfbuzz_font_skia.h",
272 "render_text_harfbuzz.cc", 272 "render_text_harfbuzz.cc",
273 "render_text_harfbuzz.h", 273 "render_text_harfbuzz.h",
274 "render_text_harfbuzz_mac.mm",
274 "render_text_mac.h", 275 "render_text_mac.h",
275 "render_text_mac.mm", 276 "render_text_mac.mm",
276 "text_utils_skia.cc", 277 "text_utils_skia.cc",
277 ] 278 ]
278 279
279 if (!is_ios) { 280 if (!is_ios) {
280 sources += [ 281 sources += [
281 "render_text.cc", 282 "render_text.cc",
282 "render_text.h", 283 "render_text.h",
283 ] 284 ]
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 715
715 fuzzer_test("color_transform_fuzztest") { 716 fuzzer_test("color_transform_fuzztest") {
716 sources = [ 717 sources = [
717 "color_transform_fuzzer.cc", 718 "color_transform_fuzzer.cc",
718 ] 719 ]
719 deps = [ 720 deps = [
720 ":gfx", 721 ":gfx",
721 ] 722 ]
722 libfuzzer_options = [ "max_len=1024" ] 723 libfuzzer_options = [ "max_len=1024" ]
723 } 724 }
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/native_widget_types.h » ('j') | ui/gfx/render_text.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698