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 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 "//base:base_static", | 221 "//base:base_static", |
222 "//base/third_party/dynamic_annotations", | 222 "//base/third_party/dynamic_annotations", |
223 "//skia", | 223 "//skia", |
224 "//third_party/harfbuzz-ng", | 224 "//third_party/harfbuzz-ng", |
225 "//third_party/icu:icui18n", | 225 "//third_party/icu:icui18n", |
226 "//third_party/icu:icuuc", | 226 "//third_party/icu:icuuc", |
227 "//third_party/libpng", | 227 "//third_party/libpng", |
228 "//third_party/zlib", | 228 "//third_party/zlib", |
229 "//ui/gfx/geometry", | 229 "//ui/gfx/geometry", |
230 ] | 230 ] |
| 231 forward_dependent_configs_from = [ "//skia" ] |
231 | 232 |
232 # Text rendering conditions (complicated so separated out). | 233 # Text rendering conditions (complicated so separated out). |
233 if (is_android || is_ios) { | 234 if (is_android || is_ios) { |
234 # We don't support RenderText on these platforms. | 235 # We don't support RenderText on these platforms. |
235 } else { | 236 } else { |
236 # These text rendering files are supported everywhere text rendering is. | 237 # These text rendering files are supported everywhere text rendering is. |
237 sources += [ | 238 sources += [ |
238 "render_text.cc", | 239 "render_text.cc", |
239 "render_text.h", | 240 "render_text.h", |
240 "render_text_harfbuzz.cc", | 241 "render_text_harfbuzz.cc", |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 | 437 |
437 defines = [ "GFX_IMPLEMENTATION" ] | 438 defines = [ "GFX_IMPLEMENTATION" ] |
438 configs += [ "//build/config/linux:x11" ] | 439 configs += [ "//build/config/linux:x11" ] |
439 | 440 |
440 deps = [ | 441 deps = [ |
441 ":gfx_export", | 442 ":gfx_export", |
442 "//base" | 443 "//base" |
443 ] | 444 ] |
444 } | 445 } |
445 } | 446 } |
OLD | NEW |