Browse Source

chore: remove unused patches

deepak1556 6 years ago
parent
commit
3396d08a3b

+ 0 - 1
patches/common/chromium/.patches

@@ -69,5 +69,4 @@ content_allow_embedder_to_prevent_locking_scheme_registry.patch
 support_mixed_sandbox_with_zygote.patch
 disable_color_correct_rendering.patch
 disable_time_ticks_dcheck.patch
-autofill_size_calculation.patch
 revert_build_swiftshader_for_arm32.patch

+ 0 - 22
patches/common/v8/disable-warning-win.patch

@@ -1,22 +0,0 @@
-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
-From: Nitish Sakhawalkar <[email protected]>
-Date: Mon, 22 Oct 2018 10:47:12 -0700
-Subject: disable-warning-win.patch
-
-Disable unit test windows build warning
-
-diff --git a/test/unittests/base/bits-unittest.cc b/test/unittests/base/bits-unittest.cc
-index 6f787eb72783570812f7cbda57b836df56b5f2cb..c36dfcc836d6351d11d2178a8e6c3556b3ff3422 100644
---- a/test/unittests/base/bits-unittest.cc
-+++ b/test/unittests/base/bits-unittest.cc
-@@ -13,7 +13,9 @@
- #else
- #define DISABLE_IN_RELEASE(Name) DISABLED_##Name
- #endif
--
-+#ifdef _WIN32
-+#pragma warning(disable:4724 4723)  // Disable potential divide by 0 warnings
-+#endif
- namespace v8 {
- namespace base {
- namespace bits {

+ 0 - 19
patches/common/v8/ostreams.patch

@@ -1,19 +0,0 @@
-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
-From: Cheng Zhao <[email protected]>
-Date: Mon, 22 Oct 2018 10:47:12 -0700
-Subject: ostreams.patch
-
-
-diff --git a/src/ostreams.h b/src/ostreams.h
-index 189f5384b99438f3dad1d77a0836ceb45f6ed938..83a5930d4bd690dde01749bcd88acb11d75aa0cb 100644
---- a/src/ostreams.h
-+++ b/src/ostreams.h
-@@ -32,7 +32,7 @@ class V8_EXPORT_PRIVATE OFStreamBase : public std::streambuf {
- };
- 
- // An output stream writing to a file.
--class V8_EXPORT_PRIVATE OFStream : public std::ostream {
-+class V8_EXPORT_PRIVATE OFStream : public NON_EXPORTED_BASE(std::ostream) {
-  public:
-   explicit OFStream(FILE* f);
-   ~OFStream() override = default;