- Version update to 54.0.2840.59 bnc#1004465: - CVE-2016-5181: Universal XSS in Blink (Anonymous) - CVE-2016-5182: Heap overflow in Blink (Giwan Go of STEALIEN) - CVE-2016-5183: Use after free in PDFium (Anonymous) - CVE-2016-5184: Use after free in PDFium (Anonymous) - CVE-2016-5185: Use after free in Blink (cloudfuzzer) - CVE-2016-5187: URL spoofing (Luan Herrera) - CVE-2016-5188: UI spoofing (Luan Herrera) - CVE-2016-5192: Cross-origin bypass in Blink (haojunhou at gmail) - CVE-2016-5189: URL spoofing (xisigr of Tencent's Xuanwu Lab) - CVE-2016-5186: Out of bounds read in DevTools (Abdulrahman Alqabandi) - CVE-2016-5191: Universal XSS in Bookmarks (Gareth Hughes) - CVE-2016-5190: Use after free in Internals (Atte Kettunen of OUSPG) - CVE-2016-5193: Scheme bypass (Yuyang ZHOUmartinzhou96) - Version update to 54.0.2840.50 bnc#1002140: - disable build for chromium-beta on %arm. while it does build, it takes two days, in which we can build roughly 600 other packages, and I rather build 600 other packages than chromium-beta. - Version update to 54.0.2840.41 - Add --ui-disable-partial-swap to the launcher bnc#1000019 cr#628168 - Export GDK_BACKEND=x11 before starting chromium, ensuring that it's started as an Xwayland client (boo#1001135). - Version update to 54.0.2840.34 bnc#998743: - Make linker use less memory by tweaking its options: * chromium-linker-memory.patch - Update constraints for arm a bit to build OBS-URL: https://build.opensuse.org/request/show/434707 OBS-URL: https://build.opensuse.org/package/show/network:chromium/chromium?expand=0&rev=947
31 lines
735 B
Diff
31 lines
735 B
Diff
--- build/toolchain/linux/BUILD.gn 2016-08-25 12:19:55.634174140 +0200
|
|
+++ build/toolchain/linux/BUILD.gn 2016-08-25 12:19:55.634174140 +0200
|
|
@@ -6,7 +6,7 @@
|
|
import("//build/toolchain/gcc_toolchain.gni")
|
|
|
|
clang_toolchain("clang_arm") {
|
|
- toolprefix = "arm-linux-gnueabihf-"
|
|
+ toolprefix = ""
|
|
toolchain_args = {
|
|
current_cpu = "arm"
|
|
current_os = "linux"
|
|
@@ -14,7 +14,7 @@
|
|
}
|
|
|
|
clang_toolchain("clang_arm64") {
|
|
- toolprefix = "aarch64-linux-gnu-"
|
|
+ toolprefix = ""
|
|
toolchain_args = {
|
|
current_cpu = "arm64"
|
|
current_os = "linux"
|
|
@@ -22,7 +22,7 @@
|
|
}
|
|
|
|
gcc_toolchain("arm") {
|
|
- toolprefix = "arm-linux-gnueabihf-"
|
|
+ toolprefix = ""
|
|
|
|
cc = "${toolprefix}gcc"
|
|
cxx = "${toolprefix}g++"
|
|
|