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

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

Issue 2755953005: color: Use SkColorSpaceXform instead of QCMS for LUTs (Closed)
Patch Set: Rebase Created 3 years, 8 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 | « cc/output/renderer_pixeltest.cc ('k') | ui/gfx/DEPS » ('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 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 8
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 "//ui/gfx/geometry", 253 "//ui/gfx/geometry",
254 "//ui/gfx/range", 254 "//ui/gfx/range",
255 ] 255 ]
256 deps = [ 256 deps = [
257 ":gfx_export", 257 ":gfx_export",
258 "//base", 258 "//base",
259 "//base:base_static", 259 "//base:base_static",
260 "//base:i18n", 260 "//base:i18n",
261 "//base/third_party/dynamic_annotations", 261 "//base/third_party/dynamic_annotations",
262 "//skia", 262 "//skia",
263 "//third_party/qcms",
264 "//third_party/zlib", 263 "//third_party/zlib",
265 ] 264 ]
266 265
267 # Text rendering conditions (complicated so separated out). 266 # Text rendering conditions (complicated so separated out).
268 if (use_aura || is_mac) { 267 if (use_aura || is_mac) {
269 # Mac doesn't use RenderTextHarfBuzz by default yet. 268 # Mac doesn't use RenderTextHarfBuzz by default yet.
270 sources += [ 269 sources += [
271 "harfbuzz_font_skia.cc", 270 "harfbuzz_font_skia.cc",
272 "harfbuzz_font_skia.h", 271 "harfbuzz_font_skia.h",
273 "render_text_harfbuzz.cc", 272 "render_text_harfbuzz.cc",
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 747
749 fuzzer_test("color_transform_fuzztest") { 748 fuzzer_test("color_transform_fuzztest") {
750 sources = [ 749 sources = [
751 "color_transform_fuzzer.cc", 750 "color_transform_fuzzer.cc",
752 ] 751 ]
753 deps = [ 752 deps = [
754 ":gfx", 753 ":gfx",
755 ] 754 ]
756 libfuzzer_options = [ "max_len=1024" ] 755 libfuzzer_options = [ "max_len=1024" ]
757 } 756 }
OLDNEW
« no previous file with comments | « cc/output/renderer_pixeltest.cc ('k') | ui/gfx/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698