aboutsummaryrefslogtreecommitdiff
path: root/webrtc/system_wrappers/cpu_features_chromium.gyp
diff options
context:
space:
mode:
authorfdegans@chromium.org <fdegans@chromium.org>2015-01-23 16:35:17 +0000
committerfdegans@chromium.org <fdegans@chromium.org>2015-01-23 16:35:17 +0000
commit8919cfe9ce84a7d803a69a2b05e871c145bfa40b (patch)
tree942a5808e333bcd3a9558bff6a8944a0324b510c /webrtc/system_wrappers/cpu_features_chromium.gyp
parentad3ee2c46bf502a18847229d42dd081c9e753c70 (diff)
downloadwebrtc-8919cfe9ce84a7d803a69a2b05e871c145bfa40b.tar.gz
Change a GYP reference to cpufeatures.gypi
This will allow us to move the remaining GYP file in android_tools to the chromium repository by removing the direct reference to it. BUG=webrtc:4115 R=andrew@webrtc.org, kjellander@webrtc.org Review URL: https://webrtc-codereview.appspot.com/35849004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@8140 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'webrtc/system_wrappers/cpu_features_chromium.gyp')
-rw-r--r--webrtc/system_wrappers/cpu_features_chromium.gyp26
1 files changed, 26 insertions, 0 deletions
diff --git a/webrtc/system_wrappers/cpu_features_chromium.gyp b/webrtc/system_wrappers/cpu_features_chromium.gyp
new file mode 100644
index 0000000000..96bb6d9c60
--- /dev/null
+++ b/webrtc/system_wrappers/cpu_features_chromium.gyp
@@ -0,0 +1,26 @@
+# Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
+#
+# Use of this source code is governed by a BSD-style license
+# that can be found in the LICENSE file in the root of the source
+# tree. An additional intellectual property rights grant can be found
+# in the file PATENTS. All contributing project authors may
+# be found in the AUTHORS file in the root of the source tree.
+
+{
+ 'conditions': [
+ ['OS=="android"', {
+ 'targets': [
+ {
+ 'target_name': 'cpu_features_android',
+ 'type': 'static_library',
+ 'sources': [
+ 'source/cpu_features_android.c',
+ ],
+ 'includes': [
+ '../../../build/android/cpufeatures.gypi',
+ ],
+ },
+ ],
+ }],
+ ], # conditions
+}