bug 97944, sr=shaver, r=cls,peterv, build venkman by default
split jsdebugger option into jsd and venkman. jsd builds the binary debugger support component, and venkman builds the front end. build both by default.
This commit is contained in:
Родитель
608f65a00a
Коммит
67eff40fc0
|
@ -60,7 +60,8 @@ lowmem 0 MOZ_MAC_LOWMEM
|
|||
accessible 1 ACCESSIBILITY
|
||||
bidi 1 IBMBIDI
|
||||
p3p 0
|
||||
jsdebugger 0
|
||||
jsd 1
|
||||
venkman 1
|
||||
moz_logging 1 MOZ_LOGGING
|
||||
chatzilla 1
|
||||
content_packs 1
|
||||
|
|
|
@ -344,7 +344,7 @@ sub ProcessJarManifests()
|
|||
{
|
||||
CreateJarFromManifest(":mozilla:extensions:p3p:resources:jar.mn", $chrome_dir, \%jars);
|
||||
}
|
||||
if ($main::options{jsdebugger})
|
||||
if ($main::options{jsd} && $main::options{venkman})
|
||||
{
|
||||
CreateJarFromManifest(":mozilla:extensions:venkman:resources:jar.mn", $chrome_dir, \%jars);
|
||||
}
|
||||
|
@ -901,7 +901,7 @@ sub BuildClientDist()
|
|||
}
|
||||
|
||||
#JS DEBUGGER
|
||||
if ($main::options{jsdebugger})
|
||||
if ($main::options{jsd})
|
||||
{
|
||||
InstallFromManifest(":mozilla:js:jsd:idl:MANIFEST_IDL", "$distdirectory:idl:");
|
||||
InstallFromManifest(":mozilla:js:jsd:MANIFEST", "$distdirectory:jsdebug:");
|
||||
|
@ -1194,7 +1194,7 @@ sub BuildIDLProjects()
|
|||
BuildIDLProject(":mozilla:extensions:p3p:macbuild:p3pIDL.mcp", "p3p");
|
||||
}
|
||||
|
||||
if ($main::options{jsdebugger})
|
||||
if ($main::options{jsd})
|
||||
{
|
||||
BuildIDLProject(":mozilla:js:jsd:macbuild:jsdIDL.mcp", "jsdservice");
|
||||
}
|
||||
|
@ -1862,11 +1862,14 @@ sub BuildExtensionsProjects()
|
|||
}
|
||||
|
||||
# JS Debugger
|
||||
if ($main::options{jsdebugger})
|
||||
if ($main::options{jsd})
|
||||
{
|
||||
BuildOneProject(":mozilla:js:jsd:macbuild:JSD.mcp", "jsdService$D.$S", 1, $main::ALIAS_SYM_FILES, 1);
|
||||
|
||||
InstallResources(":mozilla:extensions:venkman:js:MANIFEST_COMPONENTS", "$components_dir");
|
||||
if ($main::options{venkman})
|
||||
{
|
||||
InstallResources(":mozilla:extensions:venkman:js:MANIFEST_COMPONENTS", "$components_dir");
|
||||
}
|
||||
}
|
||||
|
||||
EndBuildModule("extensions");
|
||||
|
|
Загрузка…
Ссылка в новой задаче