- Added patch chromium-56-enable-vaapi-on-suse.patch to enable VAAPI hardware accelerated video decoding. - Update to 56.0.2924.76 - Version update to 56.0.2924.67 - Version update to 56.0.2924.59 - Version update to 56.0.2924.53 - Version update to 56.0.2924.51 - Fix the gcc5 usage on Leap - Disable system icu, crashes autofill - Use gcc5 on Leap - Update to 56.0.2924.28 - Allow building with non-system icu on older systems - Version update to 56.0.2924.21 - Version update to 56.0.2924.18 - Version update to 56.0.2924.14 - Version update to 56.0.2924.10 - Version update to 56.0.2922.1 - Version update to 56.0.2920.0 - Version update to 56.0.2914.3: * refresh patch chromium-prop-codecs.patch OBS-URL: https://build.opensuse.org/request/show/453614 OBS-URL: https://build.opensuse.org/package/show/network:chromium/chromium?expand=0&rev=981
20 lines
384 B
Plaintext
20 lines
384 B
Plaintext
import("//build/toolchain/gcc_toolchain.gni")
|
|
|
|
gcc_toolchain("default") {
|
|
cc = getenv("CC")
|
|
cxx = getenv("CXX")
|
|
ar = "ar"
|
|
nm = "nm"
|
|
ld = cxx
|
|
|
|
extra_cflags = getenv("CFLAGS")
|
|
extra_cppflags = getenv("CPPFLAGS")
|
|
extra_cxxflags = getenv("CXXFLAGS")
|
|
extra_ldflags = getenv("LDFLAGS")
|
|
|
|
toolchain_args = {
|
|
current_cpu = current_cpu
|
|
current_os = current_os
|
|
}
|
|
}
|