Fix references to https://sites.google.com/site/skiadocs/.
Point them to their equivalent in https://skia.org. BUG=None R=hcm@google.com, jcgregorio@google.com NOTRY=true Review URL: https://codereview.chromium.org/856353004
This commit is contained in:
parent
658d55cd61
commit
4c93a12688
@ -1 +1 @@
|
|||||||
Please see the guidelines for contributing code at https://sites.google.com/site/skiadocs/developer-documentation/contributing-code
|
Please see the guidelines for contributing code at https://skia.org/dev/contrib/
|
||||||
|
4
Makefile
4
Makefile
@ -25,7 +25,7 @@
|
|||||||
# If you want more fine-grained control, you can run gyp and then build the
|
# If you want more fine-grained control, you can run gyp and then build the
|
||||||
# gyp-generated projects yourself.
|
# gyp-generated projects yourself.
|
||||||
#
|
#
|
||||||
# See https://sites.google.com/site/skiadocs/ for complete documentation.
|
# See https://skia.org for complete documentation.
|
||||||
|
|
||||||
SKIA_OUT ?= out
|
SKIA_OUT ?= out
|
||||||
BUILDTYPE ?= Debug
|
BUILDTYPE ?= Debug
|
||||||
@ -67,7 +67,7 @@ default: most
|
|||||||
|
|
||||||
uname := $(shell uname)
|
uname := $(shell uname)
|
||||||
ifneq (,$(findstring CYGWIN, $(uname)))
|
ifneq (,$(findstring CYGWIN, $(uname)))
|
||||||
$(error Cannot build using Make on Windows. See https://sites.google.com/site/skiadocs/user-documentation/quick-start-guides/windows)
|
$(error Cannot build using Make on Windows. See https://skia.org/user/quick/windows)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# If user requests "make all", chain to our explicitly-declared "everything"
|
# If user requests "make all", chain to our explicitly-declared "everything"
|
||||||
|
2
README
2
README
@ -1,3 +1,3 @@
|
|||||||
Skia is a complete 2D graphic library for drawing Text, Geometries, and Images.
|
Skia is a complete 2D graphic library for drawing Text, Geometries, and Images.
|
||||||
|
|
||||||
See full details, and build instructions, at https://sites.google.com/site/skiadocs/home
|
See full details, and build instructions, at https://skia.org.
|
||||||
|
@ -4,8 +4,8 @@ Skia Quickstart Guide
|
|||||||
|
|
||||||
WARNING: Several steps in this guide are out of sync with our automatically-
|
WARNING: Several steps in this guide are out of sync with our automatically-
|
||||||
tested, officially-supported processes for checking out and building Skia.
|
tested, officially-supported processes for checking out and building Skia.
|
||||||
The officially supported processes are the ones documented in skiadocs; see
|
The officially supported processes are the ones documented in https://skia.org;
|
||||||
https://sites.google.com/site/skiadocs/user-documentation/quick-start-guides
|
see https://skia.org/user/quick.
|
||||||
|
|
||||||
The steps documented within this file are more experimental in nature.
|
The steps documented within this file are more experimental in nature.
|
||||||
|
|
||||||
|
2
make.bat
2
make.bat
@ -5,7 +5,7 @@
|
|||||||
@ECHO OFF
|
@ECHO OFF
|
||||||
|
|
||||||
rem Launches make.py on Windows, after setting Visual Studio environment variables.
|
rem Launches make.py on Windows, after setting Visual Studio environment variables.
|
||||||
rem See https://sites.google.com/site/skiadocs/user-documentation/quick-start-guides/windows
|
rem See https://skia.org/user/quick/windows.
|
||||||
|
|
||||||
rem Skip environment setup on bots.
|
rem Skip environment setup on bots.
|
||||||
if "%CHROME_HEADLESS%"=="1" goto run_python
|
if "%CHROME_HEADLESS%"=="1" goto run_python
|
||||||
|
10
make.py
10
make.py
@ -4,7 +4,7 @@
|
|||||||
# found in the LICENSE file.
|
# found in the LICENSE file.
|
||||||
|
|
||||||
# "Makefile" replacement to build skia for Windows.
|
# "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:
|
# Some usage examples:
|
||||||
# make clean
|
# make clean
|
||||||
@ -150,19 +150,19 @@ def Make(args):
|
|||||||
elif os.name == 'posix':
|
elif os.name == 'posix':
|
||||||
if sys.platform == 'darwin':
|
if sys.platform == 'darwin':
|
||||||
print 'Mac developers should not run this script; see ' \
|
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)
|
sys.exit(1)
|
||||||
elif sys.platform == 'cygwin':
|
elif sys.platform == 'cygwin':
|
||||||
print 'Windows development on Cygwin is not currently supported; see ' \
|
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)
|
sys.exit(1)
|
||||||
else:
|
else:
|
||||||
print 'Unix developers should not run this script; see ' \
|
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)
|
sys.exit(1)
|
||||||
else:
|
else:
|
||||||
print 'unknown platform (os.name=%s, sys.platform=%s); see %s' % (
|
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(1)
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
Skia Update
|
Skia Update
|
||||||
|
|
||||||
Skia : Access
|
Skia : Access
|
||||||
- code.google.com/p/skia
|
- https://skia.org
|
||||||
- sites.google.com/site/skiadocs
|
- https://skia.googlesource.com/skia
|
||||||
|
|
||||||
Skia : Overview
|
Skia : Overview
|
||||||
- portable graphics engine
|
- portable graphics engine
|
||||||
|
@ -34,7 +34,7 @@ Make sure the following have been installed:
|
|||||||
Check out the source code
|
Check out the source code
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
see https://sites.google.com/site/skiadocs/developer-documentation/contributing-code/downloading
|
see https://skia.org/user/download
|
||||||
|
|
||||||
Generate Visual Studio projects
|
Generate Visual Studio projects
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
2
skia.gyp
2
skia.gyp
@ -6,7 +6,7 @@
|
|||||||
# More targets are defined within the gyp/ directory, but those are
|
# More targets are defined within the gyp/ directory, but those are
|
||||||
# not intended for external use and may change without notice.
|
# not intended for external use and may change without notice.
|
||||||
#
|
#
|
||||||
# Full documentation at https://sites.google.com/site/skiadocs/
|
# Full documentation at https://skia.org.
|
||||||
#
|
#
|
||||||
{
|
{
|
||||||
'targets': [
|
'targets': [
|
||||||
|
Loading…
Reference in New Issue
Block a user