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

Unified Diff: webrtc/system_wrappers/cpu_features_webrtc.gyp

Issue 1820133002: Implement CPU feature detection for ARM Linux. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: GN correction, dead file removal, formatting, stricter string structure test for AT_PLATFORM. Created 4 years, 8 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 | « webrtc/system_wrappers/BUILD.gn ('k') | webrtc/system_wrappers/source/cpu_features_linux.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/system_wrappers/cpu_features_webrtc.gyp
diff --git a/webrtc/system_wrappers/cpu_features_webrtc.gyp b/webrtc/system_wrappers/cpu_features_webrtc.gyp
index 064b3cf049c116e5efd918a53a8f41882f7dbbe0..310e3b2448ef3141f5e2e810daaab800875cc813 100644
--- a/webrtc/system_wrappers/cpu_features_webrtc.gyp
+++ b/webrtc/system_wrappers/cpu_features_webrtc.gyp
@@ -7,6 +7,7 @@
# be found in the AUTHORS file in the root of the source tree.
{
+ 'includes': [ '../build/common.gypi', ],
'conditions': [
['OS=="android"', {
'targets': [
@@ -22,5 +23,19 @@
},
],
}],
+ ['OS=="linux"', {
+ 'targets': [
+ {
+ 'target_name': 'cpu_features_linux',
+ 'type': 'static_library',
+ 'sources': [
+ 'source/cpu_features_linux.c',
+ ],
+ 'dependencies': [
+ '<(webrtc_root)/common.gyp:webrtc_common',
+ ],
+ },
+ ],
+ }],
], # conditions
}
« no previous file with comments | « webrtc/system_wrappers/BUILD.gn ('k') | webrtc/system_wrappers/source/cpu_features_linux.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698