Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2405)

Unified Diff: make.py

Issue 856353004: Fix references to https://sites.google.com/site/skiadocs/. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: lua Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « make.bat ('k') | resources/slides_content2.lua » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: make.py
diff --git a/make.py b/make.py
index 2bb00a230f75ffa7d9636d79056f56ae15393388..414cc9f5bb4fbf817fcfbc8c113258e9e6b4ddb0 100644
--- a/make.py
+++ b/make.py
@@ -4,7 +4,7 @@
# found in the LICENSE file.
# "Makefile" replacement to build skia for Windows.
-# More info at https://sites.google.com/site/skiadocs/
+# More info at https://skia.org.
#
# Some usage examples:
# make clean
@@ -150,19 +150,19 @@ def Make(args):
elif os.name == 'posix':
if sys.platform == 'darwin':
print 'Mac developers should not run this script; see ' \
- 'https://sites.google.com/site/skiadocs/user-documentation/quick-start-guides/mac'
+ 'https://skia.org/user/quick/macos'
sys.exit(1)
elif sys.platform == 'cygwin':
print 'Windows development on Cygwin is not currently supported; see ' \
- 'https://sites.google.com/site/skiadocs/user-documentation/quick-start-guides/windows'
+ 'https://skia.org/user/quick/windows'
sys.exit(1)
else:
print 'Unix developers should not run this script; see ' \
- 'https://sites.google.com/site/skiadocs/user-documentation/quick-start-guides/linux'
+ 'https://skia.org/user/quick/linux'
sys.exit(1)
else:
print 'unknown platform (os.name=%s, sys.platform=%s); see %s' % (
- os.name, sys.platform, 'https://sites.google.com/site/skiadocs/')
+ os.name, sys.platform, 'https://skia.org/user/quick')
sys.exit(1)
sys.exit(0)
« no previous file with comments | « make.bat ('k') | resources/slides_content2.lua » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698