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

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

Issue 2203663002: ColorTransform, transforms colors from one color space to another (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use floats Created 4 years, 4 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 | « no previous file | ui/gfx/color_space.h » ('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 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 "break_list.h", 63 "break_list.h",
64 "codec/jpeg_codec.cc", 64 "codec/jpeg_codec.cc",
65 "codec/jpeg_codec.h", 65 "codec/jpeg_codec.h",
66 "codec/png_codec.cc", 66 "codec/png_codec.cc",
67 "codec/png_codec.h", 67 "codec/png_codec.h",
68 "color_analysis.cc", 68 "color_analysis.cc",
69 "color_analysis.h", 69 "color_analysis.h",
70 "color_palette.h", 70 "color_palette.h",
71 "color_space.cc", 71 "color_space.cc",
72 "color_space.h", 72 "color_space.h",
73 "color_transform.cc",
74 "color_transform.h",
73 "color_utils.cc", 75 "color_utils.cc",
74 "color_utils.h", 76 "color_utils.h",
75 "favicon_size.cc", 77 "favicon_size.cc",
76 "favicon_size.h", 78 "favicon_size.h",
77 "font.cc", 79 "font.cc",
78 "font.h", 80 "font.h",
79 "font_fallback.h", 81 "font_fallback.h",
80 "font_fallback_linux.cc", 82 "font_fallback_linux.cc",
81 "font_fallback_linux.h", 83 "font_fallback_linux.h",
82 "font_fallback_mac.mm", 84 "font_fallback_mac.mm",
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 "animation/multi_animation_unittest.cc", 607 "animation/multi_animation_unittest.cc",
606 "animation/slide_animation_unittest.cc", 608 "animation/slide_animation_unittest.cc",
607 "animation/tween_unittest.cc", 609 "animation/tween_unittest.cc",
608 "blit_unittest.cc", 610 "blit_unittest.cc",
609 "break_list_unittest.cc", 611 "break_list_unittest.cc",
610 "canvas_unittest.cc", 612 "canvas_unittest.cc",
611 "canvas_unittest_mac.mm", 613 "canvas_unittest_mac.mm",
612 "codec/jpeg_codec_unittest.cc", 614 "codec/jpeg_codec_unittest.cc",
613 "codec/png_codec_unittest.cc", 615 "codec/png_codec_unittest.cc",
614 "color_analysis_unittest.cc", 616 "color_analysis_unittest.cc",
617 "color_transform_unittest.cc",
615 "color_utils_unittest.cc", 618 "color_utils_unittest.cc",
616 "font_fallback_mac_unittest.cc", 619 "font_fallback_mac_unittest.cc",
617 "font_list_unittest.cc", 620 "font_list_unittest.cc",
618 "geometry/box_unittest.cc", 621 "geometry/box_unittest.cc",
619 "geometry/cubic_bezier_unittest.cc", 622 "geometry/cubic_bezier_unittest.cc",
620 "geometry/insets_unittest.cc", 623 "geometry/insets_unittest.cc",
621 "geometry/matrix3_unittest.cc", 624 "geometry/matrix3_unittest.cc",
622 "geometry/point3_unittest.cc", 625 "geometry/point3_unittest.cc",
623 "geometry/point_unittest.cc", 626 "geometry/point_unittest.cc",
624 "geometry/quad_unittest.cc", 627 "geometry/quad_unittest.cc",
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 if (is_android) { 733 if (is_android) {
731 generate_jni("gfx_jni_headers") { 734 generate_jni("gfx_jni_headers") {
732 sources = [ 735 sources = [
733 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", 736 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java",
734 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", 737 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java",
735 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", 738 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java",
736 ] 739 ]
737 jni_package = "gfx" 740 jni_package = "gfx"
738 } 741 }
739 } 742 }
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/color_space.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698