mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
af2fa2e8ab
Provide a single mach command to automatically generate the static database of CSS properties that devtools uses for the inspector and various editors. MozReview-Commit-ID: 8E2jwxF0KbM --HG-- rename : devtools/shared/css/moz.build => devtools/shared/css/generated/moz.build extra : rebase_source : ab1815f321d460886168d95ddb739a579599b8c7 extra : histedit_source : f2bfecdcc128a87abcf3c0284a54c53bdeff1c87
18 lines
437 B
Python
18 lines
437 B
Python
# -*- Mode: python; 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/.
|
|
|
|
DIRS += [
|
|
'generated',
|
|
]
|
|
|
|
DevToolsModules(
|
|
'color-db.js',
|
|
'color.js',
|
|
'lexer.js',
|
|
'parsing-utils.js',
|
|
'properties-db.js',
|
|
)
|