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

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

Issue 1703553002: [qcms] Provide an API to compute xyY gamut area relative to NTSC 1953 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 26 matching lines...) Expand all
37 }, { # disable_qcms == 0 37 }, { # disable_qcms == 0
38 'sources': [ 38 'sources': [
39 'src/chain.c', 39 'src/chain.c',
40 'src/chain.h', 40 'src/chain.h',
41 'src/iccread.c', 41 'src/iccread.c',
42 'src/matrix.c', 42 'src/matrix.c',
43 'src/matrix.h', 43 'src/matrix.h',
44 'src/qcms.h', 44 'src/qcms.h',
45 'src/qcmsint.h', 45 'src/qcmsint.h',
46 'src/qcmstypes.h', 46 'src/qcmstypes.h',
47 'src/qcms_util.c',
47 'src/transform.c', 48 'src/transform.c',
48 'src/transform_util.c', 49 'src/transform_util.c',
49 'src/transform_util.h', 50 'src/transform_util.h',
50 ], 51 ],
51 'conditions': [ 52 'conditions': [
52 ['target_arch=="ia32" or target_arch=="x64"', { 53 ['target_arch=="ia32" or target_arch=="x64"', {
53 'defines': [ 54 'defines': [
54 'SSE2_ENABLE', 55 'SSE2_ENABLE',
55 ], 56 ],
56 'sources': [ 57 'sources': [
(...skipping 29 matching lines...) Expand all
86 'libraries': [ 87 'libraries': [
87 '-lm', 88 '-lm',
88 ], 89 ],
89 }], 90 }],
90 ['target_arch=="ia32" or target_arch=="x64"', { 91 ['target_arch=="ia32" or target_arch=="x64"', {
91 'sources': [ 92 'sources': [
92 'src/tests/qcms_test_tetra_clut_rgba.c', 93 'src/tests/qcms_test_tetra_clut_rgba.c',
93 'src/tests/qcms_test_main.c', 94 'src/tests/qcms_test_main.c',
94 'src/tests/qcms_test_internal_srgb.c', 95 'src/tests/qcms_test_internal_srgb.c',
95 'src/tests/qcms_test_munsell.c', 96 'src/tests/qcms_test_munsell.c',
97 'src/tests/qcms_test_ntsc_gamut.c',
96 ], 98 ],
97 }], 99 }],
98 ], 100 ],
99 }, 101 },
100 ], 102 ],
101 }], 103 }],
102 ], 104 ],
103 } 105 }
104 106
105 # Local Variables: 107 # Local Variables:
106 # tab-width:2 108 # tab-width:2
107 # indent-tabs-mode:nil 109 # indent-tabs-mode:nil
108 # End: 110 # End:
109 # vim: set expandtab tabstop=2 shiftwidth=2: 111 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698