OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |