OLD | NEW |
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 Loading... |
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', | |
100 'src/tests/qcms_test_tetra_clut_rgba.c', | 99 'src/tests/qcms_test_tetra_clut_rgba.c', |
101 'src/tests/qcms_test_util.c', | |
102 ], | 100 ], |
103 }, | 101 }, |
104 ], | 102 ], |
105 }], | 103 }], |
106 ], | 104 ], |
107 } | 105 } |
108 | 106 |
109 # Local Variables: | 107 # Local Variables: |
110 # tab-width:2 | 108 # tab-width:2 |
111 # indent-tabs-mode:nil | 109 # indent-tabs-mode:nil |
112 # End: | 110 # End: |
113 # vim: set expandtab tabstop=2 shiftwidth=2: | 111 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |