Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[chromium][firefox][servo][thunderbird] tweak janitor.json scripts
- Loading branch information
|
@@ -21,12 +21,12 @@ |
|
|
} |
|
|
}, |
|
|
"scripts": { |
|
|
"Build (ninja -C out/Default chrome)": "ninja -C out/Default chrome", |
|
|
"Run (out/Default/chrome --no-sandbox)": { |
|
|
"Build Chromium": "ninja -C out/Default chrome", |
|
|
"Run Chromium": { |
|
|
"cmd": "out/Default/chrome --no-sandbox", |
|
|
"openPort": "8088" |
|
|
}, |
|
|
"Update source code (git rebase-update && gclient sync)": "git rebase-update && gclient sync", |
|
|
"Send to code review (git cl upload)": "git cl upload" |
|
|
"Update source code": "git rebase-update && gclient sync", |
|
|
"Send to code review": "git cl upload" |
|
|
} |
|
|
} |
|
@@ -21,14 +21,14 @@ |
|
|
} |
|
|
}, |
|
|
"scripts": { |
|
|
"./mach build": "./mach build", |
|
|
"./mach build faster": "./mach build faster", |
|
|
"./mach build binaries": "./mach build binaries", |
|
|
"./mach run": { |
|
|
"Build Firefox": "./mach build", |
|
|
"Build faster": "./mach build faster", |
|
|
"Build binaries": "./mach build binaries", |
|
|
"Run Firefox": { |
|
|
"cmd": "./mach run", |
|
|
"openPort": "8088" |
|
|
}, |
|
|
"./mach clobber": "./mach clobber", |
|
|
"Clobber build": "./mach clobber", |
|
|
"Update source code": "git fetch origin && git rebase origin/master", |
|
|
"Send to code review": "git bz attach -e origin/master..HEAD" |
|
|
} |
|
|
|
@@ -21,14 +21,14 @@ |
|
|
} |
|
|
}, |
|
|
"scripts": { |
|
|
"./mach build": "./mach build", |
|
|
"./mach build faster": "./mach build faster", |
|
|
"./mach build binaries": "./mach build binaries", |
|
|
"./mach run": { |
|
|
"Build Firefox": "./mach build", |
|
|
"Build faster": "./mach build faster", |
|
|
"Build binaries": "./mach build binaries", |
|
|
"Run Firefox": { |
|
|
"cmd": "./mach run", |
|
|
"openPort": "8088" |
|
|
}, |
|
|
"./mach clobber": "./mach clobber", |
|
|
"Clobber build": "./mach clobber", |
|
|
"Update source code": "hg pull -u", |
|
|
"Send to code review": "hg push review" |
|
|
} |
|
|
|
@@ -21,17 +21,17 @@ |
|
|
} |
|
|
}, |
|
|
"scripts": { |
|
|
"./mach build --dev": "./mach build --dev", |
|
|
"./mach build --release": "./mach build --release", |
|
|
"./mach run --dev": { |
|
|
"Build Servo (dev)": "./mach build --dev", |
|
|
"Build Servo (release)": "./mach build --release", |
|
|
"Run Servo (dev)": { |
|
|
"cmd": "./mach run --dev", |
|
|
"openPort": "8088" |
|
|
}, |
|
|
"./mach run --release": { |
|
|
"Run Servo (release)": { |
|
|
"cmd": "./mach run --release", |
|
|
"openPort": "8088" |
|
|
}, |
|
|
"./mach check": "./mach check", |
|
|
"Check coding style": "./mach check", |
|
|
"Update source code": "git fetch origin && git rebase origin/master", |
|
|
"Send to code review": "hub pull-request" |
|
|
} |
|
|
|
@@ -21,13 +21,13 @@ |
|
|
} |
|
|
}, |
|
|
"scripts": { |
|
|
"./mozilla/mach build": "./mozilla/mach build", |
|
|
"make -C objdir/calendar/lightning": "make -C objdir/calendar/lightning", |
|
|
"./mozilla/mach run": { |
|
|
"Build Thunderbird": "./mozilla/mach build", |
|
|
"Build Lightning": "make -C objdir/calendar/lightning", |
|
|
"Run Thunderbird": { |
|
|
"cmd": "./mozilla/mach run", |
|
|
"openPort": "8088" |
|
|
}, |
|
|
"./mozilla/mach clobber": "./mozilla/mach clobber", |
|
|
"Clobber build": "./mozilla/mach clobber", |
|
|
"Update sources": "python client.py checkout" |
|
|
} |
|
|
}
|