2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:18 +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/.
|
|
|
|
|
2015-09-21 17:04:18 +00:00
|
|
|
include('../templates.mozbuild')
|
|
|
|
|
2013-02-25 20:47:18 +00:00
|
|
|
DIRS += [
|
2015-11-25 15:54:26 +00:00
|
|
|
'aboutdebugging',
|
2015-01-10 18:51:46 +00:00
|
|
|
'animationinspector',
|
2014-03-29 17:01:37 +00:00
|
|
|
'canvasdebugger',
|
2013-09-09 20:33:25 +00:00
|
|
|
'commandline',
|
|
|
|
'debugger',
|
2016-02-09 22:23:29 +00:00
|
|
|
'dom',
|
2014-03-31 22:26:53 +00:00
|
|
|
'eyedropper',
|
2013-09-09 20:33:25 +00:00
|
|
|
'framework',
|
2013-02-25 20:47:18 +00:00
|
|
|
'inspector',
|
2015-09-28 11:33:20 +00:00
|
|
|
'jsonview',
|
2015-11-04 21:35:53 +00:00
|
|
|
'locales',
|
2015-09-02 21:46:26 +00:00
|
|
|
'memory',
|
2013-09-09 20:33:25 +00:00
|
|
|
'netmonitor',
|
2015-03-31 15:28:43 +00:00
|
|
|
'performance',
|
2015-10-15 10:47:21 +00:00
|
|
|
'preferences',
|
2014-09-10 17:11:06 +00:00
|
|
|
'projecteditor',
|
2015-07-30 07:13:26 +00:00
|
|
|
'promisedebugger',
|
2016-01-05 07:33:31 +00:00
|
|
|
'responsive.html',
|
2013-09-09 20:33:25 +00:00
|
|
|
'responsivedesign',
|
|
|
|
'scratchpad',
|
|
|
|
'shadereditor',
|
|
|
|
'shared',
|
2015-09-17 21:28:42 +00:00
|
|
|
'shims',
|
2013-02-25 20:47:18 +00:00
|
|
|
'sourceeditor',
|
2014-08-29 16:32:49 +00:00
|
|
|
'storage',
|
2013-02-25 20:47:18 +00:00
|
|
|
'styleeditor',
|
2015-10-16 10:44:47 +00:00
|
|
|
'themes',
|
2014-03-26 22:28:24 +00:00
|
|
|
'webaudioeditor',
|
2013-09-09 20:33:25 +00:00
|
|
|
'webconsole',
|
2014-06-12 06:47:35 +00:00
|
|
|
'webide',
|
2013-02-25 20:47:18 +00:00
|
|
|
]
|
2013-09-23 10:43:37 +00:00
|
|
|
|
2015-09-11 04:34:42 +00:00
|
|
|
# Shim old theme paths used by DevTools add-ons
|
|
|
|
if CONFIG['MOZ_BUILD_APP'] == 'browser':
|
|
|
|
DIRS += ['themes/shims']
|
|
|
|
|
2013-09-23 10:43:37 +00:00
|
|
|
EXTRA_COMPONENTS += [
|
2016-02-24 10:06:42 +00:00
|
|
|
'devtools-startup.js',
|
|
|
|
'devtools-startup.manifest',
|
2013-09-23 10:43:37 +00:00
|
|
|
]
|
2013-12-10 07:18:11 +00:00
|
|
|
|
2014-03-26 22:28:24 +00:00
|
|
|
JAR_MANIFESTS += ['jar.mn']
|
2014-07-25 13:38:15 +00:00
|
|
|
|
2015-09-21 17:04:18 +00:00
|
|
|
DevToolsModules(
|
2015-04-23 09:24:49 +00:00
|
|
|
'definitions.js',
|
2016-04-01 12:49:00 +00:00
|
|
|
'menus.js',
|
2015-09-21 17:04:18 +00:00
|
|
|
)
|