Commit 742be446 authored by Frank Barchard's avatar Frank Barchard

Remove references to svn version control.

BUG=libyuv:636
TESTED=try bots
R=kjellander@chromium.org

Review URL: https://codereview.chromium.org/2339813002 .
parent d8fe1ad6
...@@ -10,8 +10,8 @@ vars = { ...@@ -10,8 +10,8 @@ vars = {
'chromium_revision': '941118827f5240dedb40082cffb1ead6c6d621cc', 'chromium_revision': '941118827f5240dedb40082cffb1ead6c6d621cc',
} }
# NOTE: Prefer revision numbers to tags for svn deps. Use http rather than # NOTE: Use http rather than https; the latter can cause problems for users
# https; the latter can cause problems for users behind proxies. # behind proxies.
deps = { deps = {
Var('root_dir') + '/third_party/gflags/src': Var('root_dir') + '/third_party/gflags/src':
Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff83d50ae025a55a4bf94dfca', Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff83d50ae025a55a4bf94dfca',
......
Name: libyuv Name: libyuv
URL: http://code.google.com/p/libyuv/ URL: http://code.google.com/p/libyuv/
Version: 1616 Version: 1617
License: BSD License: BSD
License File: LICENSE License File: LICENSE
......
...@@ -7,6 +7,5 @@ FORCE_HTTPS_COMMIT_URL: True ...@@ -7,6 +7,5 @@ FORCE_HTTPS_COMMIT_URL: True
PROJECT: libyuv PROJECT: libyuv
TRY_ON_UPLOAD: False TRY_ON_UPLOAD: False
TRYSERVER_ROOT: src TRYSERVER_ROOT: src
TRYSERVER_SVN_URL: svn://svn.chromium.org/chrome-try/try-libyuv
#GITCL_PREUPLOAD: #GITCL_PREUPLOAD:
#GITCL_PREDCOMMIT: #GITCL_PREDCOMMIT:
...@@ -84,8 +84,7 @@ To get just the source (not buildable): ...@@ -84,8 +84,7 @@ To get just the source (not buildable):
ninja -C out\Release_x64 ninja -C out\Release_x64
#### Building with clangcl #### Building with clangcl
set GYP_DEFINES=clang=1 target_arch=ia32 libyuv_enable_svn=1 set GYP_DEFINES=clang=1 target_arch=ia32
set LLVM_REPO_URL=svn://svn.chromium.org/llvm-project
call python tools\clang\scripts\update.py call python tools\clang\scripts\update.py
call python gyp_libyuv -fninja libyuv_test.gyp call python gyp_libyuv -fninja libyuv_test.gyp
ninja -C out\Debug ninja -C out\Debug
......
...@@ -11,6 +11,6 @@ ...@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_ #define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 1616 #define LIBYUV_VERSION 1617
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
...@@ -192,7 +192,7 @@ class Rmtree(Action): ...@@ -192,7 +192,7 @@ class Rmtree(Action):
def doit(self, _): def doit(self, _):
if sys.platform.startswith('win'): if sys.platform.startswith('win'):
# shutil.rmtree() doesn't work on Windows if any of the directories are # shutil.rmtree() doesn't work on Windows if any of the directories are
# read-only, which svn repositories are. # read-only.
subprocess.check_call(['rd', '/q', '/s', self._path], shell=True) subprocess.check_call(['rd', '/q', '/s', self._path], shell=True)
else: else:
shutil.rmtree(self._path) shutil.rmtree(self._path)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment