| 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
|
|
|