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

Side by Side Diff: webrtc/system_wrappers/system_wrappers.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 unified diff | Download patch
« no previous file with comments | « webrtc/system_wrappers/source/cpu_features_linux.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
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 'includes': [ '../build/common.gypi', ], 10 'includes': [ '../build/common.gypi', ],
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 }, { # OS!="android" 116 }, { # OS!="android"
117 'sources!': [ 117 'sources!': [
118 'include/logcat_trace_context.h', 118 'include/logcat_trace_context.h',
119 'source/logcat_trace_context.cc', 119 'source/logcat_trace_context.cc',
120 ], 120 ],
121 }], 121 }],
122 ['OS=="linux"', { 122 ['OS=="linux"', {
123 'defines': [ 123 'defines': [
124 'WEBRTC_THREAD_RR', 124 'WEBRTC_THREAD_RR',
125 ], 125 ],
126 'conditions': [
127 ['build_with_chromium==0', {
128 'dependencies': [
129 'cpu_features_webrtc.gyp:cpu_features_linux',
130 ],
131 }],
132 ],
126 'link_settings': { 133 'link_settings': {
127 'libraries': [ '-lrt', ], 134 'libraries': [ '-lrt', ],
128 }, 135 },
129 }], 136 }],
130 ['OS=="mac"', { 137 ['OS=="mac"', {
131 'link_settings': { 138 'link_settings': {
132 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/ApplicationServ ices.framework', ], 139 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/ApplicationServ ices.framework', ],
133 }, 140 },
134 'sources!': [ 141 'sources!': [
135 'source/atomic32_posix.cc', 142 'source/atomic32_posix.cc',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 'type': 'static_library', 190 'type': 'static_library',
184 'dependencies': [ 191 'dependencies': [
185 'system_wrappers', 192 'system_wrappers',
186 'field_trial_default', 193 'field_trial_default',
187 'metrics_default', 194 'metrics_default',
188 ] 195 ]
189 }, 196 },
190 ], # targets 197 ], # targets
191 } 198 }
192 199
OLDNEW
« no previous file with comments | « webrtc/system_wrappers/source/cpu_features_linux.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698