diff --git a/.gn b/.gn index b1386c9a7..63dad32d5 100644 --- a/.gn +++ b/.gn @@ -24,6 +24,7 @@ check_targets = [ "//libyuv/*" ] # to force additional review for new uses of exec_script, which is strongly # discouraged except for gypi_to_gn calls. exec_script_whitelist = [ + "//build/config/BUILD.gn", "//build/config/android/BUILD.gn", "//build/config/android/config.gni", "//build/config/android/internal_rules.gni", diff --git a/BUILD.gn b/BUILD.gn index d1e55de16..b091cbc22 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -20,6 +20,7 @@ use_neon = current_cpu == "arm64" || (current_cpu == "arm" && (arm_use_neon || a source_set("libyuv") { sources = [ + # Headers "include/libyuv.h", "include/libyuv/basic_types.h", "include/libyuv/compare.h", @@ -40,7 +41,7 @@ source_set("libyuv") { "include/libyuv/version.h", "include/libyuv/video_common.h", - # sources. + # Source Files "source/compare.cc", "source/compare_common.cc", "source/compare_gcc.cc", @@ -113,6 +114,7 @@ source_set("libyuv") { if (use_neon) { static_library("libyuv_neon") { sources = [ + # ARM Source Files "source/compare_neon.cc", "source/compare_neon64.cc", "source/rotate_neon.cc", diff --git a/README.chromium b/README.chromium index 648bc9f28..a8213de68 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1581 +Version: 1582 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 2b9fecbb9..72615542c 100644 --- a/include/libyuv/version.h +++ b/include/libyuv/version.h @@ -11,6 +11,6 @@ #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #define INCLUDE_LIBYUV_VERSION_H_ -#define LIBYUV_VERSION 1581 +#define LIBYUV_VERSION 1582 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT