Merge pull request #5907 from timvandermeij/browser-manifests
Provide only one browser manifest example
This commit is contained in:
commit
0434569798
10
make.js
10
make.js
@ -1101,7 +1101,7 @@ target.chromium = function() {
|
||||
|
||||
if (!test('-f', browserManifest)) {
|
||||
echo('Browser manifest file ' + browserManifest + ' does not exist.');
|
||||
echo('Try copying one of the examples in test/resources/browser_manifests');
|
||||
echo('Copy and adjust the example in test/resources/browser_manifests.');
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@ -1189,7 +1189,7 @@ target.browsertest = function(options) {
|
||||
|
||||
if (!test('-f', 'test/' + PDF_BROWSERS)) {
|
||||
echo('Browser manifest file test/' + PDF_BROWSERS + ' does not exist.');
|
||||
echo('Copy one of the examples in test/resources/browser_manifests/');
|
||||
echo('Copy and adjust the example in test/resources/browser_manifests.');
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@ -1213,7 +1213,7 @@ target.unittest = function(options, callback) {
|
||||
|
||||
if (!test('-f', 'test/' + PDF_BROWSERS)) {
|
||||
echo('Browser manifest file test/' + PDF_BROWSERS + ' does not exist.');
|
||||
echo('Copy one of the examples in test/resources/browser_manifests/');
|
||||
echo('Copy and adjust the example in test/resources/browser_manifests.');
|
||||
exit(1);
|
||||
}
|
||||
callback = callback || function() {};
|
||||
@ -1235,7 +1235,7 @@ target.fonttest = function(options, callback) {
|
||||
|
||||
if (!test('-f', 'test/' + PDF_BROWSERS)) {
|
||||
echo('Browser manifest file test/' + PDF_BROWSERS + ' does not exist.');
|
||||
echo('Copy one of the examples in test/resources/browser_manifests/');
|
||||
echo('Copy and adjust the example in test/resources/browser_manifests.');
|
||||
exit(1);
|
||||
}
|
||||
callback = callback || function() {};
|
||||
@ -1258,7 +1258,7 @@ target.botmakeref = function() {
|
||||
|
||||
if (!test('-f', 'test/' + PDF_BROWSERS)) {
|
||||
echo('Browser manifest file test/' + PDF_BROWSERS + ' does not exist.');
|
||||
echo('Copy one of the examples in test/resources/browser_manifests/');
|
||||
echo('Copy and adjust the example in test/resources/browser_manifests.');
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
@ -0,0 +1,10 @@
|
||||
[
|
||||
{
|
||||
"name": "Firefox",
|
||||
"path": "/path/to/firefox/executable"
|
||||
},
|
||||
{
|
||||
"name": "Chrome",
|
||||
"path": "/path/to/chrome/executable"
|
||||
}
|
||||
]
|
@ -1,10 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name":"firefox7",
|
||||
"path":"/home/sayrer/firefoxen/nightly/firefox"
|
||||
},
|
||||
{
|
||||
"name":"chrome14",
|
||||
"path":"/opt/google/chrome/chrome"
|
||||
}
|
||||
]
|
@ -1,14 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name":"firefox5",
|
||||
"path":"/Applications/Firefox.app"
|
||||
},
|
||||
{
|
||||
"name":"firefox6",
|
||||
"path":"/Applications/FirefoxAurora.app"
|
||||
},
|
||||
{
|
||||
"name":"chrome14",
|
||||
"path":"/Applications/Google Chrome.app"
|
||||
}
|
||||
]
|
@ -1,10 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name":"firefox",
|
||||
"path":"C:/Program Files (x86)/Firefox/firefox.exe"
|
||||
},
|
||||
{
|
||||
"name":"aurora",
|
||||
"path":"C:/Program Files (x86)/Aurora/firefox.exe"
|
||||
}
|
||||
]
|
Loading…
Reference in New Issue
Block a user