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

Side by Side Diff: third_party/qcms/qcms.gyp

Issue 1862053002: Reland: [qcms] Fix build_output_lut to return correct data for parametric curves (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove more warnings Created 4 years, 7 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 # Do not build QCMS on Android or iOS. (See http://crbug.com/577155) 8 # Do not build QCMS on Android or iOS. (See http://crbug.com/577155)
9 ['OS == "android" or OS == "ios"', { 9 ['OS == "android" or OS == "ios"', {
10 'disable_qcms%': 1, 10 'disable_qcms%': 1,
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 'defines': [ 89 'defines': [
90 'SSE2_ENABLE', 90 'SSE2_ENABLE',
91 ], 91 ],
92 }], 92 }],
93 ], 93 ],
94 'sources': [ 94 'sources': [
95 'src/tests/qcms_test_main.c', 95 'src/tests/qcms_test_main.c',
96 'src/tests/qcms_test_internal_srgb.c', 96 'src/tests/qcms_test_internal_srgb.c',
97 'src/tests/qcms_test_munsell.c', 97 'src/tests/qcms_test_munsell.c',
98 'src/tests/qcms_test_ntsc_gamut.c', 98 'src/tests/qcms_test_ntsc_gamut.c',
99 'src/tests/qcms_test_output_trc.c',
99 'src/tests/qcms_test_tetra_clut_rgba.c', 100 'src/tests/qcms_test_tetra_clut_rgba.c',
101 'src/tests/qcms_test_util.c',
100 ], 102 ],
101 }, 103 },
102 ], 104 ],
103 }], 105 }],
104 ], 106 ],
105 } 107 }
106 108
107 # Local Variables: 109 # Local Variables:
108 # tab-width:2 110 # tab-width:2
109 # indent-tabs-mode:nil 111 # indent-tabs-mode:nil
110 # End: 112 # End:
111 # vim: set expandtab tabstop=2 shiftwidth=2: 113 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698