gecko-dev/dom/grid/moz.build
Brad Werth e0d3269112 Bug 1241932 - Expose decoded CSS grid track properties in a Chrome API. r=heycam, r=khuey
--HG--
extra : rebase_source : 0c2a49236a2c71233a1ce6a92e50663b8a9f6238
2016-07-06 11:45:18 -07:00

32 lines
717 B
Python

# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.
MOCHITEST_CHROME_MANIFESTS += ['test/chrome.ini']
EXPORTS.mozilla.dom += [
'Grid.h',
'GridDimension.h',
'GridLine.h',
'GridLines.h',
'GridTrack.h',
'GridTracks.h',
]
UNIFIED_SOURCES += [
'Grid.cpp',
'GridDimension.cpp',
'GridLine.cpp',
'GridLines.cpp',
'GridTrack.cpp',
'GridTracks.cpp',
]
LOCAL_INCLUDES += [
'/layout/generic',
]
FINAL_LIBRARY = 'xul'