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

Unified Diff: third_party/protobuf/cleanup_release.sh

Issue 1842653006: Update //third_party/protobuf to version 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update sync unittest and README.chromium Created 4 years, 8 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
Index: third_party/protobuf/cleanup_release.sh
diff --git a/third_party/protobuf/cleanup_release.sh b/third_party/protobuf/cleanup_release.sh
new file mode 100644
index 0000000000000000000000000000000000000000..fcfc6c31498e6b65527d35de70671f0b1e9aa22b
--- /dev/null
+++ b/third_party/protobuf/cleanup_release.sh
@@ -0,0 +1,52 @@
+#!/bin/bash
Peter Kasting 2016/04/06 22:35:39 Why do we need this script? It won't affect the b
xyzzyz 2016/04/07 18:55:02 Along with the patch 0002, it affects protoc sligh
Peter Kasting 2016/04/07 23:25:38 In what way? protoc won't support these inputs an
Peter Kasting 2016/04/13 02:11:44 All of my above concerns still stand. I still bel
xyzzyz 2016/04/14 00:23:56 Pulled full protobuf release and deleted this scri
+
+DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+
+cd $DIR
+
+rm -f appveyor.*
+rm -f autogen.sh
+rm -rf benchmarks/
+rm -f BUILD
+rm -rf cmake/
+rm -f configure.ac
+rm -rf conformance/
+rm -rf csharp/
+rm -rf editors/
+rm -rf examples/
+rm -f generate_descriptor_proto.sh
+rm -f .gitignore
+rm -f gmock.BUILD
+rm -f INSTALL.txt
+rm -rf java/
+rm -rf javanano/
+rm -rf js/
+rm -rf m4/
+rm -rf Makefile.am
+rm -rf more_tests/
+rm -rf objectivec/
+rm -f post_process_dist.sh
+rm -f protobuf.bzl
+rm -f protobuf-lite.pc.in
+rm -f protobuf.pc.in
+rm -f Protobuf.podspec
+rm -rf protoc-artifacts/
+rm -rf ruby/
+rm -f six.BUILD
+rm -f travis.sh
+rm -f .travis.yml
+rm -f update_file_lists.sh
+rm -rf util/
+rm -f WORKSPACE
+
+# src/
+rm -rf src/solaris/
+rm -f src/Makefile.am
+
+# src/google/protobuf/compiler/
+rm -rf src/google/protobuf/compiler/csharp
+rm -rf src/google/protobuf/compiler/java
+rm -rf src/google/protobuf/compiler/javanano
+rm -rf src/google/protobuf/compiler/js
+rm -rf src/google/protobuf/compiler/objectivec
+rm -rf src/google/protobuf/compiler/ruby

Powered by Google App Engine
This is Rietveld 408576698