diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-07 21:59:04 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-07 21:59:04 +0000 |
commit | 0c64428c4e8d2bef0fc4c9fb5aee8be70032dc4e (patch) | |
tree | f9a3b8e9f4a4387155e0a27a152c20170e8c22a1 | |
parent | d7a22bdd4c47fd1dc646f03d15d27081bfd1987b (diff) | |
download | chromium_src-0c64428c4e8d2bef0fc4c9fb5aee8be70032dc4e.zip chromium_src-0c64428c4e8d2bef0fc4c9fb5aee8be70032dc4e.tar.gz chromium_src-0c64428c4e8d2bef0fc4c9fb5aee8be70032dc4e.tar.bz2 |
Remove the third_party/gnu directory, switching scripts that use unix like tools to cygwin.
BUGS=1313603
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@539 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/tools/build/win/flattened_html_file.bat | 4 | ||||
-rw-r--r-- | chrome/tools/build/win/version.bat | 4 | ||||
-rw-r--r-- | third_party/cygwin/setup_env.bat | 4 | ||||
-rw-r--r-- | tools/grit/build/grit_resource_file.bat | 4 |
4 files changed, 10 insertions, 6 deletions
diff --git a/chrome/tools/build/win/flattened_html_file.bat b/chrome/tools/build/win/flattened_html_file.bat index 310d88d..9dcd7b6 100644 --- a/chrome/tools/build/win/flattened_html_file.bat +++ b/chrome/tools/build/win/flattened_html_file.bat @@ -8,7 +8,7 @@ set InFile=%~1 set SolutionDir=%~2 set OutFile=%~3 -:: Use GNU tools -call %SolutionDir%\..\third_party\gnu\setup_env.bat +:: Put cygwin in the path +call %SolutionDir%\..\third_party\cygwin\setup_env.bat %SolutionDir%\..\third_party\python_24\python.exe %SolutionDir%\tools\build\win\html_inline.py %InFile% %OutFile% diff --git a/chrome/tools/build/win/version.bat b/chrome/tools/build/win/version.bat index 0cda045..0a9504f 100644 --- a/chrome/tools/build/win/version.bat +++ b/chrome/tools/build/win/version.bat @@ -9,8 +9,8 @@ set IntDir=%~3 set OutFile=%~4 set VarsBat=%IntDir%/vers-vars.bat -:: Use GNU tools -call %SolutionDir%\..\third_party\gnu\setup_env.bat +:: Put cygwin in the path +call %SolutionDir%\..\third_party\cygwin\setup_env.bat :: Load version digits as environment variables cat %SolutionDir%\VERSION | sed "s/\(.*\)/set \1/" > %VarsBat% diff --git a/third_party/cygwin/setup_env.bat b/third_party/cygwin/setup_env.bat new file mode 100644 index 0000000..0aac0ea --- /dev/null +++ b/third_party/cygwin/setup_env.bat @@ -0,0 +1,4 @@ +:: This script adds cygwin to the path
+@echo OFF
+
+set PATH=%~dp0\bin;%PATH%
diff --git a/tools/grit/build/grit_resource_file.bat b/tools/grit/build/grit_resource_file.bat index 3be0231..7853212 100644 --- a/tools/grit/build/grit_resource_file.bat +++ b/tools/grit/build/grit_resource_file.bat @@ -9,7 +9,7 @@ set InFile=%~1 set SolutionDir=%~2 set InputDir=%~3 -:: Use GNU tools -call %SolutionDir%\..\third_party\gnu\setup_env.bat +:: Put cygwin in the path +call %SolutionDir%\..\third_party\cygwin\setup_env.bat %SolutionDir%\..\third_party\python_24\python.exe %SolutionDir%\..\tools\grit\grit.py -i %InFile% build -o %InputDir% |