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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 | 94 |
95 defines = [ "GFX_IMPLEMENTATION" ] | 95 defines = [ "GFX_IMPLEMENTATION" ] |
96 | 96 |
97 deps = [ | 97 deps = [ |
98 ":gfx_export", | 98 ":gfx_export", |
99 "//base/third_party/dynamic_annotations", | 99 "//base/third_party/dynamic_annotations", |
100 "//base:base_static", | 100 "//base:base_static", |
101 "//base:i18n", | 101 "//base:i18n", |
102 "//skia", | 102 "//skia", |
103 "//third_party/harfbuzz-ng", | 103 "//third_party/harfbuzz-ng", |
| 104 "//third_party/libjpeg_turbo:libjpeg", |
104 "//third_party/libpng", | 105 "//third_party/libpng", |
105 "//third_party/zlib", | 106 "//third_party/zlib", |
106 "//third_party:jpeg", | 107 "//third_party:jpeg", |
107 "//ui/gfx/geometry", | 108 "//ui/gfx/geometry", |
108 ] | 109 ] |
109 public_deps = [ | 110 public_deps = [ |
110 "//base", | 111 "//base", |
111 "//skia", | 112 "//skia", |
112 "//third_party/icu", | 113 "//third_party/icu", |
113 ] | 114 ] |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 if (is_android) { | 234 if (is_android) { |
234 generate_jni("gfx_jni_headers") { | 235 generate_jni("gfx_jni_headers") { |
235 sources = [ | 236 sources = [ |
236 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 237 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
237 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 238 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
238 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 239 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
239 ] | 240 ] |
240 jni_package = "gfx" | 241 jni_package = "gfx" |
241 } | 242 } |
242 } | 243 } |
OLD | NEW |