| Index: third_party/qcms/BUILD.gn
|
| diff --git a/third_party/qcms/BUILD.gn b/third_party/qcms/BUILD.gn
|
| index cfb042bf138279acf8b614549f8fb7021321ccf0..9c015d19df3ab9f49c23677d8c9b7b8d9e0ac629 100644
|
| --- a/third_party/qcms/BUILD.gn
|
| +++ b/third_party/qcms/BUILD.gn
|
| @@ -49,9 +49,11 @@ source_set("qcms") {
|
| }
|
| }
|
|
|
| -if (!disable_qcms && (current_cpu == "x86" || current_cpu == "x64")) {
|
| +if (!disable_qcms) {
|
| executable("qcms_tests") {
|
| - defines = [ "SSE2_ENABLE" ]
|
| + if (current_cpu == "x86" || current_cpu == "x64") {
|
| + defines = [ "SSE2_ENABLE" ]
|
| + }
|
| sources = [
|
| "src/tests/qcms_test_internal_srgb.c",
|
| "src/tests/qcms_test_main.c",
|
|
|