Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(747)

Unified Diff: third_party/apache-win32/remove_files_not_needed_for_chromium.sh

Issue 328053002: Check in win32 binaries for apache for the layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix license on remove_files... script Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/apache-win32/modules/mod_ssl.so.sha1 ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/apache-win32/remove_files_not_needed_for_chromium.sh
diff --git a/third_party/apache-win32/remove_files_not_needed_for_chromium.sh b/third_party/apache-win32/remove_files_not_needed_for_chromium.sh
new file mode 100755
index 0000000000000000000000000000000000000000..5ed0cb0164af7d25c4e63ee2795bb0cd7e51e61f
--- /dev/null
+++ b/third_party/apache-win32/remove_files_not_needed_for_chromium.sh
@@ -0,0 +1,49 @@
+#!/bin/bash -e
+
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# This is a simple script that strips out all of the files from the
+# Apache distribution we don't actually need to run the Chromium
+# layout tests.
+
+find . \! \( \
+ -path . -o \
+ -path .. -o \
+ -path ./ABOUT_APACHE.txt -o \
+ -path ./bin -o \
+ -path ./bin/ApacheMonitor.exe -o \
+ -path ./bin/httpd.exe -o \
+ -path ./bin/libapr-1.dll -o \
+ -path ./bin/libapriconv-1.dll -o \
+ -path ./bin/libaprutil-1.dll -o \
+ -path ./bin/libeay32.dll -o \
+ -path ./bin/libhttpd.dll -o \
+ -path ./bin/openssl.exe -o \
+ -path ./bin/php5ts.dll -o \
+ -path ./bin/ssleay32.dll -o \
+ -path ./bin/zlib1.dll -o \
+ -path ./CHANGES.txt -o \
+ -path ./INSTALL.txt -o \
+ -path ./LICENSE.txt -o \
+ -path ./modules -o \
+ -path ./modules/mod_alias.so -o \
+ -path ./modules/mod_asis.so -o \
+ -path ./modules/mod_authz_host.so -o \
+ -path ./modules/mod_autoindex.so -o \
+ -path ./modules/mod_cgi.so -o \
+ -path ./modules/mod_headers.so -o \
+ -path ./modules/mod_log_config.so -o \
+ -path ./modules/mod_mime.so -o \
+ -path ./modules/mod_rewrite.so -o \
+ -path ./modules/mod_ssl.so -o \
+ -path ./modules/php5apache2_2.dll -o \
+ -path ./NOTICE.txt -o \
+ -path ./OPENSSL-NEWS.txt -o \
+ -path ./OPENSSL-README.txt -o \
+ -path ./README-win32.txt -o \
+ -path ./README.chromium -o \
+ -path ./README.txt -o \
+ -path ./remove_files_not_needed_for_chromium.sh \
+ \) | xargs rm -fr
« no previous file with comments | « third_party/apache-win32/modules/mod_ssl.so.sha1 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698