forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge autoland to mozilla-central a=merge
- Loading branch information
Showing
96 changed files
with
2,408 additions
and
600 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -662,14 +662,14 @@ ifdef MSMANIFEST_TOOL | |
@if test -f [email protected]; then \ | ||
if test -f '$(srcdir)/[email protected]'; then \ | ||
echo 'Embedding manifest from $(srcdir)/[email protected] and [email protected]'; \ | ||
mt.exe -NOLOGO -MANIFEST '$(win_srcdir)/[email protected]' [email protected] -OUTPUTRESOURCE:$@\;1; \ | ||
$(MT) -NOLOGO -MANIFEST '$(win_srcdir)/[email protected]' [email protected] -OUTPUTRESOURCE:$@\;1; \ | ||
else \ | ||
echo 'Embedding manifest from [email protected]'; \ | ||
mt.exe -NOLOGO -MANIFEST [email protected] -OUTPUTRESOURCE:$@\;1; \ | ||
$(MT) -NOLOGO -MANIFEST [email protected] -OUTPUTRESOURCE:$@\;1; \ | ||
fi; \ | ||
elif test -f '$(srcdir)/[email protected]'; then \ | ||
echo 'Embedding manifest from $(srcdir)/[email protected]'; \ | ||
mt.exe -NOLOGO -MANIFEST '$(win_srcdir)/[email protected]' -OUTPUTRESOURCE:$@\;1; \ | ||
$(MT) -NOLOGO -MANIFEST '$(win_srcdir)/[email protected]' -OUTPUTRESOURCE:$@\;1; \ | ||
fi | ||
endif # MSVC with manifest tool | ||
ifdef MOZ_PROFILE_GENERATE | ||
|
@@ -697,14 +697,14 @@ ifdef MSMANIFEST_TOOL | |
@if test -f [email protected]; then \ | ||
if test -f '$(srcdir)/[email protected]'; then \ | ||
echo 'Embedding manifest from $(srcdir)/[email protected] and [email protected]'; \ | ||
mt.exe -NOLOGO -MANIFEST '$(win_srcdir)/[email protected]' [email protected] -OUTPUTRESOURCE:$@\;1; \ | ||
$(MT) -NOLOGO -MANIFEST '$(win_srcdir)/[email protected]' [email protected] -OUTPUTRESOURCE:$@\;1; \ | ||
else \ | ||
echo 'Embedding manifest from [email protected]'; \ | ||
mt.exe -NOLOGO -MANIFEST [email protected] -OUTPUTRESOURCE:$@\;1; \ | ||
$(MT) -NOLOGO -MANIFEST [email protected] -OUTPUTRESOURCE:$@\;1; \ | ||
fi; \ | ||
elif test -f '$(srcdir)/[email protected]'; then \ | ||
echo 'Embedding manifest from $(srcdir)/[email protected]'; \ | ||
mt.exe -NOLOGO -MANIFEST '$(win_srcdir)/[email protected]' -OUTPUTRESOURCE:$@\;1; \ | ||
$(MT) -NOLOGO -MANIFEST '$(win_srcdir)/[email protected]' -OUTPUTRESOURCE:$@\;1; \ | ||
fi | ||
endif # MSVC with manifest tool | ||
else | ||
|
@@ -732,7 +732,7 @@ ifeq (_WINNT,$(GNU_CC)_$(OS_ARCH)) | |
$(EXPAND_LD) -nologo -out:$@ -pdb:$(LINK_PDBFILE) $< $(WIN32_EXE_LDFLAGS) $(LDFLAGS) $(MOZ_PROGRAM_LDFLAGS) $(STATIC_LIBS) $(SHARED_LIBS) $(EXTRA_LIBS) $(OS_LIBS) | ||
ifdef MSMANIFEST_TOOL | ||
@if test -f [email protected]; then \ | ||
mt.exe -NOLOGO -MANIFEST [email protected] -OUTPUTRESOURCE:$@\;1; \ | ||
$(MT) -NOLOGO -MANIFEST [email protected] -OUTPUTRESOURCE:$@\;1; \ | ||
rm -f [email protected]; \ | ||
fi | ||
endif # MSVC with manifest tool | ||
|
@@ -833,7 +833,7 @@ ifeq (_WINNT,$(GNU_CC)_$(OS_ARCH)) | |
ifdef MSMANIFEST_TOOL | ||
ifdef EMBED_MANIFEST_AT | ||
@if test -f [email protected]; then \ | ||
mt.exe -NOLOGO -MANIFEST [email protected] -OUTPUTRESOURCE:$@\;$(EMBED_MANIFEST_AT); \ | ||
$(MT) -NOLOGO -MANIFEST [email protected] -OUTPUTRESOURCE:$@\;$(EMBED_MANIFEST_AT); \ | ||
rm -f [email protected]; \ | ||
fi | ||
endif # EMBED_MANIFEST_AT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
// Extend from the devtools eslintrc. | ||
"extends": "../../.eslintrc", | ||
|
||
"rules": { | ||
// The inspector is being migrated to HTML and cleaned of | ||
// chrome-privileged code, so this rule disallows requiring chrome | ||
// code. Some files in the inspector disable this rule still. The | ||
// goal is to enable the rule globally on all files. | ||
"mozilla/reject-some-requires": [2, "^(chrome|chrome:.*|resource:.*|devtools/server/.*|.*\\.jsm)$"], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.