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

Side by Side Diff: build/android/cpufeatures.gypi

Issue 12730006: Android: rename android_build_type gyp variable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Depend on the Android NDK's cpu feature detection. The WebView build is part 5 # Depend on the Android NDK's cpu feature detection. The WebView build is part
6 # of the system and the library already exists; for the normal build there is a 6 # of the system and the library already exists; for the normal build there is a
7 # gyp file in the checked-in NDK to build it. 7 # gyp file in the checked-in NDK to build it.
8 { 8 {
9 'conditions': [ 9 'conditions': [
10 ['android_build_type != 0', { 10 ['android_webview_build != 0', {
benm (inactive) 2013/03/11 17:23:29 ditto, awb == 1?
Torne 2013/03/11 17:31:11 Done.
11 'libraries': [ 11 'libraries': [
12 'cpufeatures.a' 12 'cpufeatures.a'
13 ], 13 ],
14 }, { 14 }, {
15 'dependencies': [ 15 'dependencies': [
16 '<(android_ndk_root)/android_tools_ndk.gyp:cpu_features', 16 '<(android_ndk_root)/android_tools_ndk.gyp:cpu_features',
17 ], 17 ],
18 }], 18 }],
19 ], 19 ],
20 } 20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698