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

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

Issue 891183003: Extract the Skia implementation of HarfBuzz font to its own file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 5 years, 10 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/gfx.gyp » ('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 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 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/config.gni") 9 import("//build/config/android/config.gni")
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 "//skia", 239 "//skia",
240 "//third_party/icu", 240 "//third_party/icu",
241 ] 241 ]
242 242
243 # Text rendering conditions (complicated so separated out). 243 # Text rendering conditions (complicated so separated out).
244 if (is_android || is_ios) { 244 if (is_android || is_ios) {
245 # We don't support RenderText on these platforms. 245 # We don't support RenderText on these platforms.
246 } else { 246 } else {
247 # Mac doesn't use RenderTextHarfBuzz by default yet. 247 # Mac doesn't use RenderTextHarfBuzz by default yet.
248 sources += [ 248 sources += [
249 "harfbuzz_font_skia.cc",
250 "harfbuzz_font_skia.h",
249 "render_text.cc", 251 "render_text.cc",
250 "render_text.h", 252 "render_text.h",
251 "render_text_harfbuzz.cc", 253 "render_text_harfbuzz.cc",
252 "render_text_harfbuzz.h", 254 "render_text_harfbuzz.h",
253 "render_text_mac.cc", 255 "render_text_mac.cc",
254 "render_text_mac.h", 256 "render_text_mac.h",
255 "text_utils_skia.cc", 257 "text_utils_skia.cc",
256 ] 258 ]
257 } 259 }
258 260
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 if (is_android) { 549 if (is_android) {
548 generate_jni("gfx_jni_headers") { 550 generate_jni("gfx_jni_headers") {
549 sources = [ 551 sources = [
550 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", 552 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java",
551 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", 553 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java",
552 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", 554 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java",
553 ] 555 ]
554 jni_package = "gfx" 556 jni_package = "gfx"
555 } 557 }
556 } 558 }
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/gfx.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698