mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 16:56:55 +08:00
Add //build/config/BUILD.gn to exec whitelist for GN.
Affected Linux GN build, not Windows. R=kjellander@chromium.org BUG=libyuv:583 TESTED=gn gen out/Debug --args=is_debug=true Review URL: https://codereview.chromium.org/1866743002 .
This commit is contained in:
parent
c7372a323a
commit
ddbc63f7b9
1
.gn
1
.gn
@ -24,6 +24,7 @@ check_targets = [ "//libyuv/*" ]
|
|||||||
# to force additional review for new uses of exec_script, which is strongly
|
# to force additional review for new uses of exec_script, which is strongly
|
||||||
# discouraged except for gypi_to_gn calls.
|
# discouraged except for gypi_to_gn calls.
|
||||||
exec_script_whitelist = [
|
exec_script_whitelist = [
|
||||||
|
"//build/config/BUILD.gn",
|
||||||
"//build/config/android/BUILD.gn",
|
"//build/config/android/BUILD.gn",
|
||||||
"//build/config/android/config.gni",
|
"//build/config/android/config.gni",
|
||||||
"//build/config/android/internal_rules.gni",
|
"//build/config/android/internal_rules.gni",
|
||||||
|
|||||||
4
BUILD.gn
4
BUILD.gn
@ -20,6 +20,7 @@ use_neon = current_cpu == "arm64" || (current_cpu == "arm" && (arm_use_neon || a
|
|||||||
|
|
||||||
source_set("libyuv") {
|
source_set("libyuv") {
|
||||||
sources = [
|
sources = [
|
||||||
|
# Headers
|
||||||
"include/libyuv.h",
|
"include/libyuv.h",
|
||||||
"include/libyuv/basic_types.h",
|
"include/libyuv/basic_types.h",
|
||||||
"include/libyuv/compare.h",
|
"include/libyuv/compare.h",
|
||||||
@ -40,7 +41,7 @@ source_set("libyuv") {
|
|||||||
"include/libyuv/version.h",
|
"include/libyuv/version.h",
|
||||||
"include/libyuv/video_common.h",
|
"include/libyuv/video_common.h",
|
||||||
|
|
||||||
# sources.
|
# Source Files
|
||||||
"source/compare.cc",
|
"source/compare.cc",
|
||||||
"source/compare_common.cc",
|
"source/compare_common.cc",
|
||||||
"source/compare_gcc.cc",
|
"source/compare_gcc.cc",
|
||||||
@ -113,6 +114,7 @@ source_set("libyuv") {
|
|||||||
if (use_neon) {
|
if (use_neon) {
|
||||||
static_library("libyuv_neon") {
|
static_library("libyuv_neon") {
|
||||||
sources = [
|
sources = [
|
||||||
|
# ARM Source Files
|
||||||
"source/compare_neon.cc",
|
"source/compare_neon.cc",
|
||||||
"source/compare_neon64.cc",
|
"source/compare_neon64.cc",
|
||||||
"source/rotate_neon.cc",
|
"source/rotate_neon.cc",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
Name: libyuv
|
Name: libyuv
|
||||||
URL: http://code.google.com/p/libyuv/
|
URL: http://code.google.com/p/libyuv/
|
||||||
Version: 1581
|
Version: 1582
|
||||||
License: BSD
|
License: BSD
|
||||||
License File: LICENSE
|
License File: LICENSE
|
||||||
|
|
||||||
|
|||||||
@ -11,6 +11,6 @@
|
|||||||
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
||||||
#define INCLUDE_LIBYUV_VERSION_H_
|
#define INCLUDE_LIBYUV_VERSION_H_
|
||||||
|
|
||||||
#define LIBYUV_VERSION 1581
|
#define LIBYUV_VERSION 1582
|
||||||
|
|
||||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user