From 7112938a2857f0326c18a10cc899f581f5b9dae0 Mon Sep 17 00:00:00 2001 From: David Chen Date: Thu, 17 Mar 2016 17:25:22 -0700 Subject: [PATCH] Google has deprecated using SVN. Move over to GitHub --- Makefile | 8 ++++---- build/gtest-targets.mk | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index d580f6ef..e8364301 100644 --- a/Makefile +++ b/Makefile @@ -119,11 +119,11 @@ PROCESSING_INCLUDES += \ -I$(SRC_PATH)codec/processing/src/vaacalc GTEST_INCLUDES += \ - -I$(SRC_PATH)gtest \ - -I$(SRC_PATH)gtest/include + -I$(SRC_PATH)gtest/googletest \ + -I$(SRC_PATH)gtest/googletest/include CODEC_UNITTEST_INCLUDES += \ - -I$(SRC_PATH)gtest/include \ + -I$(SRC_PATH)gtest/googletest/include \ -I$(SRC_PATH)codec/common/inc \ -I$(SRC_PATH)test @@ -172,7 +172,7 @@ gmp-bootstrap: cd gmp-api && git fetch origin && git checkout $(GMP_API_BRANCH) gtest-bootstrap: - svn co https://googletest.googlecode.com/svn/trunk/ gtest + git clone https://github.com/google/googletest.git gtest ifeq ($(HAVE_GTEST),Yes) diff --git a/build/gtest-targets.mk b/build/gtest-targets.mk index fe711968..c6b87aa9 100644 --- a/build/gtest-targets.mk +++ b/build/gtest-targets.mk @@ -1,4 +1,4 @@ -GTEST_SRCDIR=gtest +GTEST_SRCDIR=gtest/googletest GTEST_CPP_SRCS=\ $(GTEST_SRCDIR)/src/gtest-all.cc\