This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ Contributing to Sky Engine
2
+ ==========================
3
+
4
+ Getting the code
5
+ ----------------
6
+
7
+ To get the code:
8
+
9
+ 1 . Fork https://github.com/domokit/sky_engine into your own GitHub account.
10
+ 2 . [ Download depot_tools] ( http://www.chromium.org/developers/how-tos/install-depot-tools )
11
+ and make sure it is in your path.
12
+ 3 . Create a ` .gclient ` file in an empty directory with the following contents:
13
+
14
+ ```
15
+ solutions = [
16
+ {
17
+ "managed": False,
18
+ "name": "src",
19
+ "url": "[email protected] :<your_name_here>/sky_engine.git",
20
+ "custom_deps": {},
21
+ "deps_file": "DEPS",
22
+ "safesync_url": "",
23
+ },
24
+ ]
25
+ target_os = ["android"]
26
+ ```
27
+
28
+ 4 . ` gclient sync `
29
+ 5 . ` cd src `
30
+ 6 . ` git remote add upstream [email protected] :domokit/sky_engine.git `
31
+ 7 . ` ./build/install-build-deps.sh `
32
+
33
+ Building the code
34
+ -----------------
35
+
36
+ 1 . ` ./mojo/tools/mojob gn `
37
+ 2 . ` ninja -C out/Debug `
38
+
39
+ Contributing code
40
+ -----------------
41
+
42
+ The Sky engine repository gladly accepts contributions via GitHub pull requests.
You can’t perform that action at this time.
0 commit comments