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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 ] | 258 ] |
259 deps = [ | 259 deps = [ |
260 ":gfx_export", | 260 ":gfx_export", |
261 "//base", | 261 "//base", |
262 "//base:base_static", | 262 "//base:base_static", |
263 "//base:i18n", | 263 "//base:i18n", |
264 "//base/third_party/dynamic_annotations", | 264 "//base/third_party/dynamic_annotations", |
265 "//skia", | 265 "//skia", |
266 "//third_party/harfbuzz-ng", | 266 "//third_party/harfbuzz-ng", |
267 "//third_party/libpng", | 267 "//third_party/libpng", |
| 268 "//third_party/qcms", |
268 "//third_party/zlib", | 269 "//third_party/zlib", |
269 ] | 270 ] |
270 | 271 |
271 # Text rendering conditions (complicated so separated out). | 272 # Text rendering conditions (complicated so separated out). |
272 if (use_aura || is_mac) { | 273 if (use_aura || is_mac) { |
273 # Mac doesn't use RenderTextHarfBuzz by default yet. | 274 # Mac doesn't use RenderTextHarfBuzz by default yet. |
274 sources += [ | 275 sources += [ |
275 "harfbuzz_font_skia.cc", | 276 "harfbuzz_font_skia.cc", |
276 "harfbuzz_font_skia.h", | 277 "harfbuzz_font_skia.h", |
277 "render_text_harfbuzz.cc", | 278 "render_text_harfbuzz.cc", |
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
730 if (is_android) { | 731 if (is_android) { |
731 generate_jni("gfx_jni_headers") { | 732 generate_jni("gfx_jni_headers") { |
732 sources = [ | 733 sources = [ |
733 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 734 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
734 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 735 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
735 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 736 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
736 ] | 737 ] |
737 jni_package = "gfx" | 738 jni_package = "gfx" |
738 } | 739 } |
739 } | 740 } |
OLD | NEW |