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

Unified Diff: third_party/libvpx/generate_gni.sh

Issue 2713853002: remove x86_abi_support from source list (Closed)
Patch Set: filter out include files when generating gni Created 3 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 | third_party/libvpx/libvpx_srcs.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libvpx/generate_gni.sh
diff --git a/third_party/libvpx/generate_gni.sh b/third_party/libvpx/generate_gni.sh
index 67ffdf747fe16484dbd4f9de3cc7355737268476..6daaf26742f5b230e04e1ee28315b4e2db859c24 100755
--- a/third_party/libvpx/generate_gni.sh
+++ b/third_party/libvpx/generate_gni.sh
@@ -112,6 +112,9 @@ function convert_srcs_to_project_files {
# Not sure why vpx_config.c is not included.
source_list=$(echo "$source_list" | grep -v 'vpx_config\.c')
+ # Ignore include files.
+ source_list=$(echo "$source_list" | grep -v 'x86_abi_support\.asm')
+
# The actual ARM files end in .asm. We have rules to translate them to .S
source_list=$(echo "$source_list" | sed s/\.asm\.s$/.asm/)
« no previous file with comments | « no previous file | third_party/libvpx/libvpx_srcs.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698