aboutsummaryrefslogtreecommitdiff
path: root/files/docs/getting_started.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/docs/getting_started.md')
-rw-r--r--files/docs/getting_started.md14
1 files changed, 3 insertions, 11 deletions
diff --git a/files/docs/getting_started.md b/files/docs/getting_started.md
index 46c591b6..5df4c30d 100644
--- a/files/docs/getting_started.md
+++ b/files/docs/getting_started.md
@@ -11,13 +11,13 @@ Refer to chromium instructions for each platform for other prerequisites.
Create a working directory, enter it, and run:
- gclient config https://chromium.googlesource.com/libyuv/libyuv
+ gclient config --name src https://chromium.googlesource.com/libyuv/libyuv
gclient sync
Then you'll get a .gclient file like:
solutions = [
- { "name" : "libyuv",
+ { "name" : "src",
"url" : "https://chromium.googlesource.com/libyuv/libyuv",
"deps_file" : "DEPS",
"managed" : True,
@@ -35,7 +35,7 @@ Browse the Git reprository: https://chromium.googlesource.com/libyuv/libyuv/+/ma
For Android add `;target_os=['android'];` to your Linux .gclient
solutions = [
- { "name" : "libyuv",
+ { "name" : "src",
"url" : "https://chromium.googlesource.com/libyuv/libyuv",
"deps_file" : "DEPS",
"managed" : True,
@@ -51,14 +51,6 @@ Then run:
export GYP_DEFINES="OS=android"
gclient sync
-Caveat: Theres an error with Google Play services updates. If you get the error "Your version of the Google Play services library is not up to date", run the following:
-
- cd chromium/src
- ./build/android/play_services/update.py download
- cd ../..
-
-For Windows the gclient sync must be done from an Administrator command prompt.
-
The sync will generate native build files for your environment using gyp (Windows: Visual Studio, OSX: XCode, Linux: make). This generation can also be forced manually: `gclient runhooks`
To get just the source (not buildable):