2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:21 +04:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS += [
|
|
|
|
'qcms.h',
|
|
|
|
'qcmstypes.h',
|
|
|
|
]
|
|
|
|
|
2013-10-25 03:23:05 +04:00
|
|
|
SOURCES += [
|
2013-08-22 10:56:02 +04:00
|
|
|
'chain.c',
|
|
|
|
'iccread.c',
|
|
|
|
'matrix.c',
|
|
|
|
'transform.c',
|
|
|
|
'transform_util.c',
|
|
|
|
]
|
|
|
|
|
2015-06-05 02:30:52 +03:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2014-03-06 02:00:17 +04:00
|
|
|
|
2017-12-08 00:09:15 +03:00
|
|
|
if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
|
2014-03-06 02:00:17 +04:00
|
|
|
CFLAGS += ['-Wno-missing-field-initializers']
|
|
|
|
|
|
|
|
use_sse1 = False
|
|
|
|
use_sse2 = False
|
|
|
|
use_altivec = False
|
2018-07-24 23:08:56 +03:00
|
|
|
if CONFIG['INTEL_ARCHITECTURE']:
|
2014-03-06 02:00:17 +04:00
|
|
|
use_sse2 = True
|
2019-02-15 00:45:27 +03:00
|
|
|
if CONFIG['CC_TYPE'] == 'clang-cl':
|
2018-07-24 23:08:56 +03:00
|
|
|
if CONFIG['OS_ARCH'] != 'WINNT' or CONFIG['CPU_ARCH'] != 'x86_64':
|
2014-03-06 02:00:17 +04:00
|
|
|
use_sse1 = True
|
|
|
|
else:
|
|
|
|
use_sse1 = True
|
2016-08-16 12:17:00 +03:00
|
|
|
elif CONFIG['HAVE_ALTIVEC']:
|
|
|
|
use_altivec = True
|
2014-03-06 02:00:17 +04:00
|
|
|
|
|
|
|
if use_sse1:
|
|
|
|
SOURCES += ['transform-sse1.c']
|
2014-03-20 05:55:00 +04:00
|
|
|
SOURCES['transform-sse1.c'].flags += CONFIG['SSE_FLAGS']
|
2014-03-06 02:00:17 +04:00
|
|
|
|
|
|
|
if use_sse2:
|
|
|
|
SOURCES += ['transform-sse2.c']
|
2014-03-20 05:55:00 +04:00
|
|
|
SOURCES['transform-sse2.c'].flags += CONFIG['SSE2_FLAGS']
|
2014-03-06 02:00:17 +04:00
|
|
|
|
|
|
|
if use_altivec:
|
|
|
|
SOURCES += ['transform-altivec.c']
|
|
|
|
SOURCES['transform-altivec.c'].flags += ['-maltivec']
|
2018-06-26 05:40:45 +03:00
|
|
|
|
|
|
|
include('/tools/fuzzing/libfuzzer-config.mozbuild')
|
|
|
|
|
|
|
|
if CONFIG['FUZZING_INTERFACES']:
|
|
|
|
TEST_DIRS += [
|
|
|
|
'fuzztest'
|
|
|
|
]
|