Merge pull request #5907 from timvandermeij/browser-manifests

Provide only one browser manifest example
This commit is contained in:
Jonas Jenwald 2015-04-04 12:18:09 +02:00
commit 0434569798
5 changed files with 15 additions and 39 deletions

10
make.js
View File

@ -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);
}

View File

@ -0,0 +1,10 @@
[
{
"name": "Firefox",
"path": "/path/to/firefox/executable"
},
{
"name": "Chrome",
"path": "/path/to/chrome/executable"
}
]

View File

@ -1,10 +0,0 @@
[
{
"name":"firefox7",
"path":"/home/sayrer/firefoxen/nightly/firefox"
},
{
"name":"chrome14",
"path":"/opt/google/chrome/chrome"
}
]

View File

@ -1,14 +0,0 @@
[
{
"name":"firefox5",
"path":"/Applications/Firefox.app"
},
{
"name":"firefox6",
"path":"/Applications/FirefoxAurora.app"
},
{
"name":"chrome14",
"path":"/Applications/Google Chrome.app"
}
]

View File

@ -1,10 +0,0 @@
[
{
"name":"firefox",
"path":"C:/Program Files (x86)/Firefox/firefox.exe"
},
{
"name":"aurora",
"path":"C:/Program Files (x86)/Aurora/firefox.exe"
}
]