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

Side by Side Diff: webrtc/system_wrappers/cpu_features_linux.gyp

Issue 1820133002: Implement CPU feature detection for ARM Linux. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixes for chromium and x86 builds 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
kjellander_webrtc 2016/04/04 06:09:45 You already added a target in webrtc/system_wrappe
Simon Hosie 2016/04/05 01:15:48 Done.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'conditions': [ 10 'conditions': [
11 ['OS=="android"', { 11 ['OS=="linux"', {
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'cpu_features_android', 14 'target_name': 'cpu_features_linux',
15 'type': 'static_library', 15 'type': 'static_library',
16 'sources': [ 16 'sources': [
17 'source/cpu_features_android.c', 17 'source/cpu_features_linux.c',
18 ],
19 'dependencies': [
20 '../../build/android/ndk.gyp:cpu_features',
21 ], 18 ],
22 }, 19 },
23 ], 20 ],
21 'dependencies': [
22 '<(webrtc_root)/common.gyp:webrtc_common',
23 ],
24 }], 24 }],
25 ], # conditions 25 ], # conditions
26 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698