Skip to content

Instantly share code, notes, and snippets.

@paulrouget
Created December 7, 2015 12:26
Building Graphene

Get source code:

git clone https://github.com/mozilla/gecko-dev.git

Install dependencies:

./mach bootstrap

Create a mozconfig file in the source directory, with the following:

mk_add_options AUTOCLOBBER=1
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj.graphene.noindex
ac_add_options --enable-application=b2g/graphene

Before building, apply this change:

diff --git a/b2g/graphene/app.mozbuild b/b2g/graphene/app.mozbuild
index 0985b61..fc3037c 100644
--- a/b2g/graphene/app.mozbuild
+++ b/b2g/graphene/app.mozbuild
@@ -14,4 +14,4 @@ DIRS += [
 ]

 # Add the defaults settings.
-FINAL_TARGET_FILES.defaults += [ 'b2g/graphene/settings.json' ]
+FINAL_TARGET_FILES.defaults += [ 'settings.json' ]

… otherwise it won't work. I will file a bug.

Then:

./mach build # will take a long time
./mach package # should take a minute

Package is located in:

./obj.graphene.noindex/dist/graphene-45.0a1.en-US.mac64.dmg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment