1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
|
# Copyright 2014 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.
import("ffmpeg_options.gni")
import("ffmpeg_generated.gni")
import("//build/buildflag_header.gni")
import("//build/config/sanitizers/sanitizers.gni")
# Path to platform configuration files.
platform_config_root =
"chromium/config/$ffmpeg_branding/$os_config/$ffmpeg_arch"
has_yasm_deps =
ffmpeg_yasm_sources != [] &&
(current_cpu == "x86" || current_cpu == "x64") && os_config != "linux-noasm"
if (has_yasm_deps) {
import("//third_party/yasm/yasm_assemble.gni")
yasm_assemble("ffmpeg_yasm") {
sources = ffmpeg_yasm_sources
# Ensure the architecture defines go in the command line before the -P
# file below, so don't use defines.
yasm_flags = []
if (current_cpu == "x86") {
yasm_flags += [ "-DARCH_X86_32" ]
} else if (current_cpu == "x64") {
yasm_flags += [ "-DARCH_X86_64" ]
}
inputs = [
# Sets visibility hidden for cglobal functions. Explicitly included
# to avoid overlooking changes to this file in incremental builds.
"libavutil/x86/x86inc.asm",
]
defines = [ "PIC" ]
include_dirs = [
platform_config_root,
"libavcodec/x86",
"libavutil/x86",
".",
]
# Disable warnings, prevents log spam for things we won't fix.
yasm_flags += [
"-w",
"-P",
rebase_path("$platform_config_root/config.asm", root_build_dir),
]
if (is_mac) {
# Necessary to ensure symbols end up with a _ prefix; added by
# yasm_assemble.gni for Windows, but not Mac.
defines += [ "PREFIX" ]
}
}
}
config("ffmpeg_dependent_config") {
include_dirs = [
platform_config_root,
".",
]
}
if (is_win) {
# Stub generator script and signatures of all functions used by Chrome.
generate_stubs_script = "//tools/generate_stubs/generate_stubs.py"
# Used by ffmpeg_generate_stubs and ffmpeg_generate_def
sig_files = [ "chromium/ffmpeg.sigs" ]
action("ffmpeg_generate_def") {
script = generate_stubs_script
sources = sig_files
outputs = [
"$target_gen_dir/ffmpeg.def",
]
args = [
"-i",
rebase_path(target_out_dir, root_build_dir),
"-o",
rebase_path(target_gen_dir, root_build_dir),
"-t",
"windows_def",
"-m",
"ffmpeg.dll",
] + rebase_path(sources, root_build_dir)
}
}
# gn orders flags on a target before flags from configs. The default config
# adds -Wall, and these flags have to be after -Wall -- so they need to come
# from a config and can't be on the target directly.
config("ffmpegsumo_warnings") {
if (is_clang) {
cflags = [
"-Wno-absolute-value",
# ffmpeg uses its own deprecated functions.
"-Wno-deprecated-declarations",
# ffmpeg doesn't care about pointer constness.
"-Wno-incompatible-pointer-types",
# ffmpeg doesn't follow usual parentheses conventions.
"-Wno-logical-op-parentheses",
# ffmpeg doesn't care about pointer signedness.
"-Wno-parentheses",
# ffmpeg doesn't care about pointer signedness.
"-Wno-pointer-sign",
# ffmpeg doesn't believe in exhaustive switch statements.
"-Wno-switch",
# matroskadec.c has a "failed:" label that's only used if some
# CONFIG_ flags we don't set are set.
"-Wno-unused-label",
# ffmpeg has a lot of unused variables.
"-Wno-unused-variable",
# This fires on `av_assert0(!"valid element size")` in utils.c
"-Wno-string-conversion",
# This fires on `pos_min` and `pos_max` in
# autorename_libavformat_utils.c
"-Wno-sometimes-uninitialized",
# clock_gettime is marked as 10.12+ in the 10.12 SDK, but ffmpeg does
# correctly check for that before calling.
"-Wno-unguarded-availability",
# ffmpeg contains static functions in header files, which lead
# to unused function warnings. There are a few legit unused
# functions too.
"-Wno-unused-function",
# vp3data.h's vp31_inter_dequant stores '128' in an int8_t array.
"-Wno-constant-conversion",
]
if (is_win) {
# This corresponds to /wd4273 below.
cflags += [ "-Wno-inconsistent-dllimport" ]
}
}
}
buildflag_header("ffmpeg_features") {
header = "ffmpeg_features.h"
if (use_system_ffmpeg) {
flags = [
"USE_SYSTEM_FFMPEG=true",
]
} else {
flags = [
"USE_SYSTEM_FFMPEG=false",
]
}
}
if (is_component_ffmpeg) {
link_target_type = "source_set"
} else {
# This must be a static_library in non-component builds to avoid pulling
# in many large global arrays (and associated code) into chrome.dll.
link_target_type = "static_library"
}
target(link_target_type, "ffmpeg_internal") {
sources = ffmpeg_c_sources + ffmpeg_gas_sources + [
"$platform_config_root/config.h",
"$platform_config_root/libavutil/avconfig.h",
]
include_dirs = [
platform_config_root,
".",
]
defines = [
"HAVE_AV_CONFIG_H",
"_POSIX_C_SOURCE=200112",
"_XOPEN_SOURCE=600",
"PIC",
]
# Disable internal ffmpeg logs in the official build; this saves ~158kb.
if (is_official_build) {
defines += [ "CHROMIUM_NO_LOGGING" ]
}
# So we can append below and assume they're defined.
cflags = []
ldflags = []
libs = []
deps = [
":ffmpeg_features",
"//third_party/opus",
]
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [
"//build/config/compiler:no_chromium_code",
# These must be after no_chromium_code for warning flags to be ordered
# correctly.
"//build/config/compiler:no_incompatible_pointer_warnings",
":ffmpegsumo_warnings",
]
# Since we are not often debugging FFmpeg, and performance is
# unacceptable without optimization, freeze the optimizations to -O2.
# If someone really wants -O1 , they can change these in their checkout.
# If you want -O0, see the Gotchas in README.Chromium for why that
# won't work.
#
# In addition to the above reasons, /Od optimization won't remove symbols
# that are under "if (0)" style sections. Which lead to link time errors
# when for example it tries to link an ARM symbol on X86.
configs -= [ "//build/config/compiler:default_optimization" ]
if (is_win) {
# Setting the optimizations to 'speed' or to 'max' on Windows results in
# a lot of unresolved symbols. The only supported mode is 'size' (see
# crbug.com/264459).
#
# FFMmpeg require dead code elimination to be available in all build modes
# and thus doesn't support wpo.
configs += [ "//build/config/compiler:optimize_no_wpo" ]
} else {
configs += [ "//build/config/compiler:optimize_max" ]
}
if (ffmpeg_use_atomics_fallback) {
if (is_posix) {
include_dirs += [ "compat/atomics/gcc" ]
} else if (is_win) {
include_dirs += [ "compat/atomics/win32" ]
}
}
if (is_posix) {
# Remove default stack frames config so we can force -fomit-frame-pointer.
configs -= [ "//build/config/compiler:default_stack_frames" ]
cflags += [
"-fPIC",
"-fomit-frame-pointer",
# ffmpeg uses its own deprecated functions.
"-Wno-deprecated-declarations",
]
# On POSIX x86, sanitizers will fail to compiler the H264 CABAC code due to
# insufficient registers unless we disable EBP usage. crbug.com/786760
if (target_cpu == "x86") {
if (using_sanitizer) {
defines += [ "HAVE_EBP_AVAILABLE=0" ]
} else {
defines += [ "HAVE_EBP_AVAILABLE=1" ]
}
}
if (!is_clang) {
# gcc doesn't have flags for specific warnings, so disable them
# all.
cflags += [ "-w" ]
}
if (current_cpu == "arm" || current_cpu == "arm64") {
asmflags = []
if (arm_float_abi == "hard") {
asmflags += [ "-DHAVE_VFP_ARGS=1" ]
} else {
asmflags += [ "-DHAVE_VFP_ARGS=0" ]
}
}
}
if (is_posix && !is_mac) {
defines += [
"_ISOC99_SOURCE",
"_LARGEFILE_SOURCE",
]
cflags += [
"-std=c99",
"-pthread",
"-fno-math-errno",
"-fno-signed-zeros",
"-fno-tree-vectorize",
]
ldflags = [
"-L",
rebase_path(target_gen_dir, root_build_dir),
]
if (!is_android && !is_fuchsia) {
# OS=android requires that both -lz and -lm occur after
# -lc++_shared on the link command line. Android link rules
# already include -lm, and we get -lz as a transitive dependency
# of libandroid.so, so simply moving both to the non-Android
# section solves the problem.
#
# The root cause of this problem is certain system libraries
# (libm starting with MNC and libz before MNC, among others)
# re-export the libgcc unwinder, and libc++ exports the
# libc++abi unwinder. As we build against libc++ headers, libc++
# must be the first in the runtime symbol lookup order (among
# all unwinder-providing libraries).
# librt for clock_gettime on precise
libs += [
"m",
"z",
"rt",
]
}
if (is_component_ffmpeg) {
# Export all symbols when building as component.
configs -= [ "//build/config/gcc:symbol_visibility_hidden" ]
configs += [ "//build/config/gcc:symbol_visibility_default" ]
}
}
if (is_mac) {
if (is_component_ffmpeg) {
# Export all symbols when building as component.
configs -= [ "//build/config/gcc:symbol_visibility_hidden" ]
configs += [ "//build/config/gcc:symbol_visibility_default" ]
}
defines += [ "_DARWIN_C_SOURCE" ]
} else if (is_win) {
defines += [
"_ISOC99_SOURCE",
"_LARGEFILE_SOURCE",
"HAVE_AV_CONFIG_H",
]
# Clang allows inline assembly where MSVC does not.
if (is_clang) {
defines += [ "HAVE_INLINE_ASM=1" ]
} else {
defines += [ "HAVE_INLINE_ASM=0" ]
}
if (is_component_ffmpeg) {
# Required to avoid 4049 and 4217 errors around redundant imports.
cflags += [
"/FIcompat/msvcrt/snprintf.h",
"/FIcompat/msvcrt/strtod.h",
]
}
# TODO(dalecurtis): We should fix these. http://crbug.com/154421
cflags += [
"/wd4996", # 'function': was declared deprecated
"/wd4018", # 'expression': signed/unsigned mismatch
"/wd4090", # 'operation' : different 'modifier' qualifiers
"/wd4305", # 'identifier': truncation from 'type1' to 'type2'
"/wd4133", # 'type' : incompatible types - from 'type1' to 'type2'
"/wd4146", # unary minus operator applied to unsigned type, result
# still unsigned
"/wd4554", # 'operator' : check operator precedence for possible
# error; use parentheses to clarify precedence
"/wd4028", # formal parameter 'number' different from declaration
"/wd4334", # 'operator' : result of 32-bit shift implicitly
# converted to 64 bits (was 64-bit shift intended?)
"/wd4101", # 'identifier' : unreferenced local variable
"/wd4102", # 'label' : unreferenced label
"/wd4116", # unnamed type definition in parentheses
"/wd4307", # 'operator' : integral constant overflow
"/wd4273", # 'function' : inconsistent DLL linkage
"/wd4005", # 'identifier' : macro redefinition
"/wd4056", # overflow in floating point constant arithmetic
"/wd4756", # overflow in constant arithmetic
]
if (current_cpu == "x64") {
# TODO(wolenetz): We should fix this. http://crbug.com/171009
cflags += [ "/wd4267" ] # Conversion from size_t to 'type'.
}
}
if (has_yasm_deps) {
deps += [ ":ffmpeg_yasm" ]
}
}
if (use_system_ffmpeg) {
import("//build/config/linux/pkg_config.gni")
import("//build/shim_headers.gni")
pkg_config("system_ffmpeg") {
packages = [
"libavcodec",
"libavformat",
"libavutil",
]
}
shim_headers("libavcodec_shim") {
root_path = "libavcodec"
prefix = "libavcodec/"
headers = [
"avcodec.h",
]
}
shim_headers("libavformat_shim") {
root_path = "libavformat"
prefix = "libavformat/"
headers = [
"avformat.h",
"avio.h",
]
}
shim_headers("libavutil_shim") {
root_path = "libavutil"
prefix = "libavutil/"
headers = [
"avutil.h",
"imgutils.h",
"log.h",
"mathematics.h",
"opt.h",
]
}
}
if (is_component_ffmpeg) {
shared_library("ffmpeg") {
if (is_android) {
configs -= [ "//build/config/android:hide_all_but_jni_onload" ]
}
public_configs = [ ":ffmpeg_dependent_config" ]
deps = [
":ffmpeg_internal",
]
# So we can append below and assume they're defined.
ldflags = []
if (is_posix && !is_mac) {
# Fixes warnings PIC relocation when building as component.
ldflags += [
"-Wl,-Bsymbolic",
"-L",
rebase_path(target_gen_dir, root_build_dir),
]
} else if (is_win) {
# Windows component build needs the .def file to export ffmpeg symbols.
deps += [ ":ffmpeg_generate_def" ]
sources = [
"$target_gen_dir/ffmpeg.def",
]
}
}
} else {
source_set("ffmpeg") {
if (use_system_ffmpeg) {
public_configs = [ ":system_ffmpeg" ]
deps = [ ":libavcodec_shim", ":libavformat_shim", ":libavutil_shim" ]
} else {
public_configs = [ ":ffmpeg_dependent_config" ]
deps = [ ":ffmpeg_internal" ]
}
}
}
|