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/.
|
|
|
|
|
2017-01-23 19:10:05 +03:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Graphics')
|
|
|
|
|
2013-02-26 00:47:21 +04:00
|
|
|
if CONFIG['MOZ_TREE_CAIRO']:
|
|
|
|
DIRS += ['cairo']
|
|
|
|
|
|
|
|
DIRS += [
|
|
|
|
'2d',
|
|
|
|
'ycbcr',
|
|
|
|
'angle',
|
|
|
|
'src',
|
|
|
|
'qcms',
|
|
|
|
'gl',
|
|
|
|
'layers',
|
|
|
|
'graphite2/src',
|
|
|
|
'harfbuzz/src',
|
|
|
|
'ots/src',
|
|
|
|
'thebes',
|
|
|
|
'ipc',
|
2015-04-01 23:02:20 +03:00
|
|
|
'vr',
|
2016-04-29 07:52:54 +03:00
|
|
|
'config',
|
2017-01-17 03:21:43 +03:00
|
|
|
'webrender_bindings',
|
2013-02-26 00:47:21 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_ENABLE_SKIA']:
|
|
|
|
DIRS += ['skia']
|
|
|
|
|
2017-09-25 19:32:47 +03:00
|
|
|
if CONFIG['MOZ_ENABLE_SKIA_PDF_SFNTLY']:
|
2017-01-08 01:20:25 +03:00
|
|
|
DIRS += ['sfntly/cpp/src']
|
|
|
|
|
2013-03-11 22:47:40 +04:00
|
|
|
if CONFIG['ENABLE_TESTS']:
|
|
|
|
DIRS += ['tests/gtest']
|
|
|
|
|
2014-07-29 03:55:55 +04:00
|
|
|
TEST_DIRS += ['tests']
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2015-06-19 21:36:23 +03:00
|
|
|
SPHINX_TREES['gfx'] = 'docs'
|