Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Unified Diff: BUILD.gn

Issue 942153003: Update the libvpx GN build files with the cpu_arch -> current_cpu change. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 0ce78c849a4fa5dc2dee3ba9a0a0cde0fd5b8fd5..bb55816b80bc13af5018c65e661746f740cafcbb 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -10,19 +10,19 @@ import("//third_party/yasm/yasm_assemble.gni")
if (is_posix && !is_mac) {
os_category = "linux"
} else {
- os_category = os
+ os_category = current_os
}
# Sets the architecture name for building libvpx.
-if (cpu_arch == "x86") {
+if (current_cpu == "x86") {
cpu_arch_full = "ia32"
-} else if (cpu_arch == "x64") {
+} else if (current_cpu == "x64") {
if (is_msan) {
cpu_arch_full = "generic"
} else {
cpu_arch_full = "x64"
}
-} else if (cpu_arch == "arm") {
+} else if (current_cpu == "arm") {
if (arm_use_neon) {
cpu_arch_full = "arm-neon"
} else if (is_android) {
@@ -31,7 +31,7 @@ if (cpu_arch == "x86") {
cpu_arch_full = "arm"
}
} else {
- cpu_arch_full = cpu_arch
+ cpu_arch_full = current_cpu
}
config("libvpx_config") {
@@ -53,11 +53,11 @@ config("libvpx_external_config") {
]
}
-if (cpu_arch == "x86" || cpu_arch == "x64") {
+if (current_cpu == "x86" || current_cpu == "x64") {
yasm_assemble("libvpx_yasm") {
- if (cpu_arch == "x86") {
+ if (current_cpu == "x86") {
sources = libvpx_srcs_x86_assembly
- } else if (cpu_arch == "x64") {
+ } else if (current_cpu == "x64") {
sources = libvpx_srcs_x86_64_assembly
}
@@ -78,9 +78,9 @@ static_library("libvpx_intrinsics_mmx") {
if (!is_win) {
cflags = [ "-mmmx" ]
}
- if (cpu_arch == "x86") {
+ if (current_cpu == "x86") {
sources = libvpx_srcs_x86_mmx
- } else if (cpu_arch == "x64") {
+ } else if (current_cpu == "x64") {
sources = libvpx_srcs_x86_64_mmx
}
}
@@ -92,9 +92,9 @@ static_library("libvpx_intrinsics_sse2") {
if (!is_win) {
cflags = [ "-msse2" ]
}
- if (cpu_arch == "x86") {
+ if (current_cpu == "x86") {
sources = libvpx_srcs_x86_sse2
- } else if (cpu_arch == "x64") {
+ } else if (current_cpu == "x64") {
sources = libvpx_srcs_x86_64_sse2
}
}
@@ -106,9 +106,9 @@ static_library("libvpx_intrinsics_ssse3") {
if (!is_win) {
cflags = [ "-mssse3" ]
}
- if (cpu_arch == "x86") {
+ if (current_cpu == "x86") {
sources = libvpx_srcs_x86_ssse3
- } else if (cpu_arch == "x64") {
+ } else if (current_cpu == "x64") {
sources = libvpx_srcs_x86_64_ssse3
}
}
@@ -120,9 +120,9 @@ static_library("libvpx_intrinsics_sse4_1") {
if (!is_win) {
cflags = [ "-msse4.1" ]
}
- if (cpu_arch == "x86") {
+ if (current_cpu == "x86") {
sources = libvpx_srcs_x86_sse4_1
- } else if (cpu_arch == "x64") {
+ } else if (current_cpu == "x64") {
sources = libvpx_srcs_x86_64_sse4_1
}
}
@@ -136,9 +136,9 @@ static_library("libvpx_intrinsics_avx2") {
} else {
cflags = [ "-mavx2" ]
}
- if (cpu_arch == "x86") {
+ if (current_cpu == "x86") {
sources = libvpx_srcs_x86_avx2
- } else if (cpu_arch == "x64") {
+ } else if (current_cpu == "x64") {
sources = libvpx_srcs_x86_64_avx2
}
}
@@ -153,7 +153,7 @@ if (cpu_arch_full == "arm-neon-cpu-detect") {
}
# Converts ARM assembly files to GAS style.
-if (cpu_arch == "arm") {
+if (current_cpu == "arm") {
action_foreach("convert_arm_assembly") {
script = "//third_party/libvpx/run_perl.py"
if (cpu_arch_full == "arm-neon") {
@@ -193,17 +193,17 @@ static_library("libvpx") {
configs += [ "//build/config/compiler:optimize_max" ]
}
- if (cpu_arch == "x86") {
+ if (current_cpu == "x86") {
sources = libvpx_srcs_x86
- } else if (cpu_arch == "x64") {
+ } else if (current_cpu == "x64") {
if (is_msan) {
sources = libvpx_srcs_generic
} else {
sources = libvpx_srcs_x86_64
}
- } else if (cpu_arch == "mipsel") {
+ } else if (current_cpu == "mipsel") {
sources = libvpx_srcs_mips
- } else if (cpu_arch == "arm") {
+ } else if (current_cpu == "arm") {
if (arm_use_neon) {
sources = libvpx_srcs_arm_neon
} else if (is_android) {
@@ -211,7 +211,7 @@ static_library("libvpx") {
} else {
sources = libvpx_srcs_arm
}
- } else if (cpu_arch == "arm64") {
+ } else if (current_cpu == "arm64") {
sources = libvpx_srcs_arm64
}
@@ -229,7 +229,7 @@ static_library("libvpx") {
configs += [ "//build/config/compiler:no_chromium_code" ]
configs += [ ":libvpx_warnings" ]
deps = []
- if (cpu_arch == "x86" || (cpu_arch == "x64" && !is_msan)) {
+ if (current_cpu == "x86" || (current_cpu == "x64" && !is_msan)) {
deps += [
":libvpx_yasm",
":libvpx_intrinsics_mmx",
@@ -245,7 +245,7 @@ static_library("libvpx") {
if (is_android) {
deps += [ "//third_party/android_tools:cpu_features" ]
}
- if (cpu_arch == "arm") {
+ if (current_cpu == "arm") {
deps += [ ":libvpx_assembly_arm" ]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698