aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/user/sample
diff options
context:
space:
mode:
authorGravatar borenet <borenet@chromium.org>2016-04-25 06:01:51 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-04-25 06:01:51 -0700
commit6c3c0c69e80b6387655c9aeda202aa358aa0b8ed (patch)
tree85a3a40fb8bc9c4161acc69fb17ce41e3465bf85 /site/user/sample
parent3c33c389e9f8d14d86756ea1ddeba2097f31ad22 (diff)
"Using Skia" tutorial: googlecode -> googlesource
Diffstat (limited to 'site/user/sample')
-rw-r--r--site/user/sample/building.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/site/user/sample/building.md b/site/user/sample/building.md
index 2fed87f374..6663f35df0 100644
--- a/site/user/sample/building.md
+++ b/site/user/sample/building.md
@@ -77,7 +77,7 @@ Create a src/DEPS file with the following:
deps = {
"src/third_party/skia/":
- "http://skia.googlecode.com/skia.git@" + Var("skia_revision"),
+ "http://skia.googlesource.com/skia.git@" + Var("skia_revision"),
}
~~~~
@@ -85,7 +85,7 @@ Create a src/DEPS file with the following:
There are two sections to the `DEPS` file at the moment, `vars` and `deps`.
The `vars` sections defines variables we can use later in the file with the
`Var()` accessor. In this case, we define our root directory, a shorter name
-for any googlecode repositories and a specific revision of Skia that we're
+for any googlesource repositories and a specific revision of Skia that we're
going to use. I've pinned to a specific version to insulate the application
from changes in the Skia tree. This lets us know that when someone checks out
the repo they'll be using the same version of Skia that we've built and tested
@@ -123,7 +123,7 @@ command above) to look as follows:
"safesync_url": "",
},
{ "name" : "src/third_party/skia",
- "url" : "http://skia.googlecode.com/skia.git@a6a8f00a3977e71dbce9da50a32c5e9a51c49285",
+ "url" : "http://skia.googlesource.com/skia.git@a6a8f00a3977e71dbce9da50a32c5e9a51c49285",
"deps_file" : "DEPS",
"managed" : True,
"custom_deps" : {
@@ -153,7 +153,7 @@ First, we need to add GYP to our project. We'll do that by adding a new entry
to the deps section of the `DEPS` file.
"src/tools/gyp":
- (Var("googlecode_url") % "gyp") + "/trunk@1700",
+ (Var("googlesource_url") % "gyp") + "/trunk@1700",
As you can see, I'm going to put the library into `src/tools/gyp` and checkout
revision 1700 (note, the revision used here, 1700, was the head revision at
@@ -280,7 +280,7 @@ a relative tools directory which doesn't exist. Luckily, that's easy to fix
with another entry in our DEPS file.
"src/tools/":
- File((Var("googlecode_url") % "skia") + "/trunk/tools/find_mac_sdk.py@" +
+ File((Var("googlesource_url") % "skia") + "/trunk/tools/find_mac_sdk.py@" +
Var("skia_revision")),
Here we using the `File()` function of `gclient` to specify that we're checking