2016-07-14 10:16:42 -06:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:21 -08: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 11:10:05 -05:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Graphics')
|
|
|
|
|
2013-02-25 12:47:21 -08: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 16:02:20 -04:00
|
|
|
'vr',
|
2016-04-28 21:52:54 -07:00
|
|
|
'config',
|
2017-01-16 19:21:43 -05:00
|
|
|
'webrender_bindings',
|
2013-02-25 12:47:21 -08:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_ENABLE_SKIA']:
|
|
|
|
DIRS += ['skia']
|
|
|
|
|
2017-09-25 17:32:47 +01:00
|
|
|
if CONFIG['MOZ_ENABLE_SKIA_PDF_SFNTLY']:
|
2017-01-07 22:20:25 +00:00
|
|
|
DIRS += ['sfntly/cpp/src']
|
|
|
|
|
2013-03-11 14:47:40 -04:00
|
|
|
if CONFIG['ENABLE_TESTS']:
|
|
|
|
DIRS += ['tests/gtest']
|
|
|
|
|
2014-07-29 08:55:55 +09:00
|
|
|
TEST_DIRS += ['tests']
|
2013-03-19 11:47:00 -07:00
|
|
|
|
2015-06-19 14:36:23 -04:00
|
|
|
SPHINX_TREES['gfx'] = 'docs'
|
2017-10-02 18:22:56 +00:00
|
|
|
|
|
|
|
with Files('docs/**'):
|
|
|
|
SCHEDULES.exclusive = ['docs']
|