summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DEPS8
-rw-r--r--base/process_util_unittest.cc2
-rw-r--r--ceee/common.gypi2
-rw-r--r--chrome/chrome_tests.gypi4
-rw-r--r--chrome_frame/chrome_frame.gyp2
-rw-r--r--chrome_frame/chrome_frame_launcher.gyp2
-rw-r--r--net/test/python_utils.cc2
-rw-r--r--net/test/test_server_win.cc2
8 files changed, 12 insertions, 12 deletions
diff --git a/DEPS b/DEPS
index 925b8a1..e6fb5c5 100644
--- a/DEPS
+++ b/DEPS
@@ -8,7 +8,7 @@ vars = {
"skia_revision": "626",
"chromium_git": "http://git.chromium.org/git",
"swig_revision": "40423",
- "nacl_revision": "3722",
+ "nacl_revision": "3664",
"libjingle_revision": "50",
"libvpx_revision": "65287",
"ffmpeg_revision": "66222",
@@ -189,10 +189,10 @@ deps_os = {
"/trunk/deps/reference_builds/chrome@41984",
"src/third_party/cygwin":
- "/trunk/deps/third_party/cygwin@66844",
+ "/trunk/deps/third_party/cygwin@11984",
- "src/third_party/python_26":
- "/trunk/tools/third_party/python_26@66685",
+ "src/third_party/python_24":
+ "/trunk/deps/third_party/python_24@22967",
"src/third_party/lighttpd":
"/trunk/deps/third_party/lighttpd@33727",
diff --git a/base/process_util_unittest.cc b/base/process_util_unittest.cc
index 34c444c..e92459c 100644
--- a/base/process_util_unittest.cc
+++ b/base/process_util_unittest.cc
@@ -203,7 +203,7 @@ TEST_F(ProcessUtilTest, GetAppOutput) {
FilePath python_runtime;
ASSERT_TRUE(PathService::Get(base::DIR_SOURCE_ROOT, &python_runtime));
python_runtime = python_runtime.Append(FILE_PATH_LITERAL("third_party"))
- .Append(FILE_PATH_LITERAL("python_26"))
+ .Append(FILE_PATH_LITERAL("python_24"))
.Append(FILE_PATH_LITERAL("python.exe"));
CommandLine cmd_line(python_runtime);
diff --git a/ceee/common.gypi b/ceee/common.gypi
index 5f668f4..88a8476 100644
--- a/ceee/common.gypi
+++ b/ceee/common.gypi
@@ -7,7 +7,7 @@
'conditions': [
['OS=="win"', {
'python': [
- '<(DEPTH)\\third_party\\python_26\\setup_env.bat && python'
+ '<(DEPTH)\\third_party\\python_24\\setup_env.bat && python'
],
}, { # OS != win
'python': [
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi
index e692de7a..0fa2ecd 100644
--- a/chrome/chrome_tests.gypi
+++ b/chrome/chrome_tests.gypi
@@ -3179,11 +3179,11 @@
['OS=="win"', {
'include_dirs': [
'..',
- '../third_party/python_26/include',
+ '../third_party/python_24/include',
],
'link_settings': {
'libraries': [
- '../third_party/python_26/libs/python26.lib',
+ '../third_party/python_24/libs/python24.lib',
],
}
}],
diff --git a/chrome_frame/chrome_frame.gyp b/chrome_frame/chrome_frame.gyp
index 39d5063..e8b334a 100644
--- a/chrome_frame/chrome_frame.gyp
+++ b/chrome_frame/chrome_frame.gyp
@@ -31,7 +31,7 @@
'conditions': [
['OS=="win"', {
'python': [
- '<(DEPTH)\\third_party\\python_26\\setup_env.bat && python'
+ '<(DEPTH)\\third_party\\python_24\\setup_env.bat && python'
],
}, { # OS != win
'python': [
diff --git a/chrome_frame/chrome_frame_launcher.gyp b/chrome_frame/chrome_frame_launcher.gyp
index cafe850..02a03f1 100644
--- a/chrome_frame/chrome_frame_launcher.gyp
+++ b/chrome_frame/chrome_frame_launcher.gyp
@@ -20,7 +20,7 @@
'conditions': [
['OS=="win"', {
'python': [
- '<(DEPTH)\\third_party\\python_26\\setup_env.bat && python'
+ '<(DEPTH)\\third_party\\python_24\\setup_env.bat && python'
],
}, { # OS != win
'python': [
diff --git a/net/test/python_utils.cc b/net/test/python_utils.cc
index 0c61b48..13438f7 100644
--- a/net/test/python_utils.cc
+++ b/net/test/python_utils.cc
@@ -70,7 +70,7 @@ bool GetPythonRunTime(FilePath* dir) {
if (!PathService::Get(base::DIR_SOURCE_ROOT, dir))
return false;
*dir = dir->Append(FILE_PATH_LITERAL("third_party"))
- .Append(FILE_PATH_LITERAL("python_26"))
+ .Append(FILE_PATH_LITERAL("python_24"))
.Append(FILE_PATH_LITERAL("python.exe"));
#elif defined(OS_POSIX)
*dir = FilePath("python");
diff --git a/net/test/test_server_win.cc b/net/test/test_server_win.cc
index a363755..64437cd 100644
--- a/net/test/test_server_win.cc
+++ b/net/test/test_server_win.cc
@@ -96,7 +96,7 @@ bool TestServer::LaunchPython(const FilePath& testserver_path) {
return false;
python_exe = python_exe
.Append(FILE_PATH_LITERAL("third_party"))
- .Append(FILE_PATH_LITERAL("python_26"))
+ .Append(FILE_PATH_LITERAL("python_24"))
.Append(FILE_PATH_LITERAL("python.exe"));
CommandLine python_command(python_exe);