dom/smil/moz.build

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
michael@0 2 # vim: set filetype=python:
michael@0 3 # This Source Code Form is subject to the terms of the Mozilla Public
michael@0 4 # License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 6
michael@0 7 TEST_TOOL_DIRS += ['test']
michael@0 8
michael@0 9 EXPORTS += [
michael@0 10 'nsISMILAttr.h',
michael@0 11 'nsISMILType.h',
michael@0 12 'nsSMILAnimationController.h',
michael@0 13 'nsSMILAnimationFunction.h',
michael@0 14 'nsSMILCompositorTable.h',
michael@0 15 'nsSMILCSSProperty.h',
michael@0 16 'nsSMILInstanceTime.h',
michael@0 17 'nsSMILInterval.h',
michael@0 18 'nsSMILKeySpline.h',
michael@0 19 'nsSMILMappedAttribute.h',
michael@0 20 'nsSMILMilestone.h',
michael@0 21 'nsSMILNullType.h',
michael@0 22 'nsSMILRepeatCount.h',
michael@0 23 'nsSMILSetAnimationFunction.h',
michael@0 24 'nsSMILTargetIdentifier.h',
michael@0 25 'nsSMILTimeContainer.h',
michael@0 26 'nsSMILTimedElement.h',
michael@0 27 'nsSMILTimeValue.h',
michael@0 28 'nsSMILTimeValueSpec.h',
michael@0 29 'nsSMILTimeValueSpecParams.h',
michael@0 30 'nsSMILTypes.h',
michael@0 31 'nsSMILValue.h',
michael@0 32 ]
michael@0 33
michael@0 34 EXPORTS.mozilla.dom += [
michael@0 35 'TimeEvent.h',
michael@0 36 ]
michael@0 37
michael@0 38 UNIFIED_SOURCES += [
michael@0 39 'nsSMILAnimationController.cpp',
michael@0 40 'nsSMILAnimationFunction.cpp',
michael@0 41 'nsSMILCompositor.cpp',
michael@0 42 'nsSMILCSSProperty.cpp',
michael@0 43 'nsSMILCSSValueType.cpp',
michael@0 44 'nsSMILFloatType.cpp',
michael@0 45 'nsSMILInstanceTime.cpp',
michael@0 46 'nsSMILInterval.cpp',
michael@0 47 'nsSMILKeySpline.cpp',
michael@0 48 'nsSMILMappedAttribute.cpp',
michael@0 49 'nsSMILNullType.cpp',
michael@0 50 'nsSMILParserUtils.cpp',
michael@0 51 'nsSMILRepeatCount.cpp',
michael@0 52 'nsSMILSetAnimationFunction.cpp',
michael@0 53 'nsSMILTimeContainer.cpp',
michael@0 54 'nsSMILTimedElement.cpp',
michael@0 55 'nsSMILTimeValue.cpp',
michael@0 56 'nsSMILTimeValueSpec.cpp',
michael@0 57 'nsSMILValue.cpp',
michael@0 58 'SMILBoolType.cpp',
michael@0 59 'SMILEnumType.cpp',
michael@0 60 'SMILIntegerType.cpp',
michael@0 61 'SMILStringType.cpp',
michael@0 62 'TimeEvent.cpp',
michael@0 63 ]
michael@0 64
michael@0 65 FAIL_ON_WARNINGS = True
michael@0 66
michael@0 67 LOCAL_INCLUDES += [
michael@0 68 '/content/base/src',
michael@0 69 '/content/svg/content/src',
michael@0 70 '/layout/style',
michael@0 71 ]
michael@0 72
michael@0 73 FINAL_LIBRARY = 'gklayout'

mercurial