2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2016-03-16 23:44:26 +00: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/.
|
|
|
|
|
|
|
|
# Truetype fonts for B2G
|
|
|
|
# ==============================================================
|
|
|
|
option(env='MOZTTDIR', nargs=1, help='Path to truetype fonts for B2G')
|
|
|
|
|
|
|
|
@depends('MOZTTDIR')
|
2016-10-26 02:49:58 +00:00
|
|
|
@imports('os')
|
2016-03-16 23:44:26 +00:00
|
|
|
def mozttdir(value):
|
|
|
|
if value:
|
|
|
|
path = value[0]
|
|
|
|
if not os.path.isdir(path):
|
2016-03-25 06:48:21 +00:00
|
|
|
die('MOZTTDIR "%s" is not a valid directory', path)
|
2016-03-22 05:21:32 +00:00
|
|
|
return path
|
|
|
|
|
|
|
|
set_config('MOZTTDIR', mozttdir)
|
2016-03-16 23:44:26 +00:00
|
|
|
|
2016-03-23 01:22:08 +00:00
|
|
|
@depends('MOZTTDIR')
|
|
|
|
def package_moztt(value):
|
|
|
|
if value:
|
|
|
|
return True
|
|
|
|
|
|
|
|
set_define('PACKAGE_MOZTT', package_moztt)
|
|
|
|
|
2016-08-05 07:07:18 +00:00
|
|
|
imply_option('MOZ_ENABLE_WARNINGS_AS_ERRORS',
|
|
|
|
depends(target)(lambda t: t.os == 'Android'), reason='--target')
|
2016-03-16 23:44:26 +00:00
|
|
|
|
|
|
|
include('../toolkit/moz.configure')
|