mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
208 lines
6.5 KiB
Plaintext
208 lines
6.5 KiB
Plaintext
|
# 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("//build/buildflag_header.gni")
|
||
|
import("//build/config/arm.gni")
|
||
|
import("//build/config/android/config.gni")
|
||
|
import("//build/config/sanitizers/sanitizers.gni")
|
||
|
import("//third_party/libaom/options.gni")
|
||
|
import("//third_party/libaom/libaom_srcs.gni")
|
||
|
import("//third_party/yasm/yasm_assemble.gni")
|
||
|
|
||
|
buildflag_header("av1_buildflags") {
|
||
|
header = "av1_buildflags.h"
|
||
|
|
||
|
flags = [ "ENABLE_AV1_DECODER=$enable_av1_decoder" ]
|
||
|
}
|
||
|
|
||
|
if (enable_av1_decoder) {
|
||
|
# Sets the architecture name for building libaom.
|
||
|
if (current_cpu == "x86") {
|
||
|
cpu_arch_full = "ia32"
|
||
|
} else if (current_cpu == "x64") {
|
||
|
if (is_msan) {
|
||
|
# TODO(johannkoenig): Check if MSAN builds pass. libaom is favoring
|
||
|
# intrinsics over assembly.
|
||
|
cpu_arch_full = "generic"
|
||
|
} else {
|
||
|
cpu_arch_full = "x64"
|
||
|
}
|
||
|
} else if (current_cpu == "arm") {
|
||
|
if (arm_use_neon) {
|
||
|
cpu_arch_full = "arm-neon"
|
||
|
} else if (is_android) {
|
||
|
cpu_arch_full = "arm-neon-cpu-detect"
|
||
|
} else {
|
||
|
cpu_arch_full = "arm"
|
||
|
}
|
||
|
} else {
|
||
|
cpu_arch_full = current_cpu
|
||
|
}
|
||
|
|
||
|
if (is_nacl) {
|
||
|
platform_include_dir = "source/config/linux/generic"
|
||
|
} else {
|
||
|
if (is_ios && current_cpu == "arm") {
|
||
|
os_category = current_os
|
||
|
} else if (is_posix || is_fuchsia) {
|
||
|
# Should cover linux, fuchsia, mac, and the ios simulator.
|
||
|
os_category = "linux"
|
||
|
} else { # This should only match windows.
|
||
|
os_category = current_os
|
||
|
}
|
||
|
platform_include_dir = "source/config/$os_category/$cpu_arch_full"
|
||
|
}
|
||
|
|
||
|
libaom_include_dirs = [
|
||
|
"source/config",
|
||
|
platform_include_dir,
|
||
|
"source/libaom",
|
||
|
]
|
||
|
|
||
|
config("libaom_config") {
|
||
|
include_dirs = libaom_include_dirs
|
||
|
}
|
||
|
|
||
|
# This config is applied to targets that depend on libaom.
|
||
|
config("libaom_external_config") {
|
||
|
include_dirs = [ "source/libaom" ]
|
||
|
}
|
||
|
|
||
|
if (current_cpu == "x86" || (current_cpu == "x64" && !is_msan)) {
|
||
|
yasm_assemble("libaom_yasm") {
|
||
|
sources = aom_dsp_common_asm_sse2
|
||
|
sources += aom_dsp_common_asm_ssse3
|
||
|
sources += aom_ports_asm_x86
|
||
|
defines = [ "CHROMIUM" ]
|
||
|
include_dirs = libaom_include_dirs
|
||
|
}
|
||
|
|
||
|
# The following targets are deliberately source_set rather than
|
||
|
# static_library. The :libaom target exposes these intrinsic implementations
|
||
|
# via global function pointer symbols, which hides the object dependency at
|
||
|
# link time. On Mac, this results in undefined references to the intrinsic
|
||
|
# symbols.
|
||
|
|
||
|
source_set("libaom_intrinsics_sse2") {
|
||
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
||
|
configs += [ "//build/config/compiler:no_chromium_code" ]
|
||
|
configs += [ ":libaom_config" ]
|
||
|
if (!is_win || is_clang) {
|
||
|
cflags = [ "-msse2" ]
|
||
|
}
|
||
|
sources = aom_av1_common_intrin_sse2
|
||
|
sources += aom_dsp_common_intrin_sse2
|
||
|
}
|
||
|
|
||
|
source_set("libaom_intrinsics_ssse3") {
|
||
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
||
|
configs += [ "//build/config/compiler:no_chromium_code" ]
|
||
|
configs += [ ":libaom_config" ]
|
||
|
if (!is_win || is_clang) {
|
||
|
cflags = [ "-mssse3" ]
|
||
|
}
|
||
|
sources = aom_av1_common_intrin_ssse3
|
||
|
sources += aom_dsp_common_intrin_ssse3
|
||
|
}
|
||
|
|
||
|
source_set("libaom_intrinsics_sse4_1") {
|
||
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
||
|
configs += [ "//build/config/compiler:no_chromium_code" ]
|
||
|
configs += [ ":libaom_config" ]
|
||
|
if (!is_win || is_clang) {
|
||
|
cflags = [ "-msse4.1" ]
|
||
|
}
|
||
|
sources = aom_av1_common_intrin_sse4_1
|
||
|
sources += aom_dsp_common_intrin_sse4_1
|
||
|
}
|
||
|
|
||
|
source_set("libaom_intrinsics_sse4_2") {
|
||
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
||
|
configs += [ "//build/config/compiler:no_chromium_code" ]
|
||
|
configs += [ ":libaom_config" ]
|
||
|
if (!is_win || is_clang) {
|
||
|
cflags = [ "-msse4.2" ]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
source_set("libaom_intrinsics_avx") {
|
||
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
||
|
configs += [ "//build/config/compiler:no_chromium_code" ]
|
||
|
configs += [ ":libaom_config" ]
|
||
|
if (is_win) {
|
||
|
cflags = [ "/arch:AVX" ]
|
||
|
} else {
|
||
|
cflags = [ "-mavx" ]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
source_set("libaom_intrinsics_avx2") {
|
||
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
||
|
configs += [ "//build/config/compiler:no_chromium_code" ]
|
||
|
configs += [ ":libaom_config" ]
|
||
|
if (is_win) {
|
||
|
cflags = [ "/arch:AVX2" ]
|
||
|
} else {
|
||
|
cflags = [ "-mavx2" ]
|
||
|
}
|
||
|
sources = aom_av1_common_intrin_avx2
|
||
|
sources += aom_dsp_common_intrin_avx2
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (current_cpu == "arm64" || cpu_arch_full == "arm-neon" ||
|
||
|
cpu_arch_full == "arm-neon-cpu-detect") {
|
||
|
source_set("libaom_intrinsics_neon") {
|
||
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
||
|
configs += [ "//build/config/compiler:no_chromium_code" ]
|
||
|
if (current_cpu == "arm") {
|
||
|
configs -= [ "//build/config/compiler:compiler_arm_fpu" ]
|
||
|
cflags = [ "-mfpu=neon" ]
|
||
|
}
|
||
|
configs += [ ":libaom_config" ]
|
||
|
sources = aom_av1_common_intrin_neon
|
||
|
sources += aom_dsp_common_intrin_neon
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static_library("libaom") {
|
||
|
if (!is_debug && is_win) {
|
||
|
configs -= [ "//build/config/compiler:default_optimization" ]
|
||
|
configs += [ "//build/config/compiler:optimize_max" ]
|
||
|
}
|
||
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
||
|
configs += [ "//build/config/compiler:no_chromium_code" ]
|
||
|
configs += [ ":libaom_config" ]
|
||
|
sources = aom_av1_common_sources
|
||
|
sources += aom_av1_decoder_sources
|
||
|
sources += aom_dsp_common_sources
|
||
|
sources += aom_dsp_decoder_sources
|
||
|
sources += aom_mem_sources
|
||
|
sources += aom_rtcd_sources
|
||
|
sources += aom_scale_sources
|
||
|
sources += aom_sources
|
||
|
sources += aom_util_sources
|
||
|
deps = []
|
||
|
if (current_cpu == "x86" || (current_cpu == "x64" && !is_msan)) {
|
||
|
deps += [
|
||
|
":libaom_intrinsics_avx",
|
||
|
":libaom_intrinsics_avx2",
|
||
|
":libaom_intrinsics_sse2",
|
||
|
":libaom_intrinsics_sse4_1",
|
||
|
":libaom_intrinsics_sse4_2",
|
||
|
":libaom_intrinsics_ssse3",
|
||
|
":libaom_yasm",
|
||
|
]
|
||
|
}
|
||
|
if (current_cpu == "arm64" || cpu_arch_full == "arm-neon" ||
|
||
|
cpu_arch_full == "arm-neon-cpu-detect") {
|
||
|
deps += [ ":libaom_intrinsics_neon" ]
|
||
|
}
|
||
|
if (is_android) {
|
||
|
deps += [ "//third_party/android_tools:cpu_features" ]
|
||
|
}
|
||
|
public_configs = [ ":libaom_external_config" ]
|
||
|
}
|
||
|
}
|