From d312a04ffacb8e86a2d2eb37985b154ab4e9d3c6 Mon Sep 17 00:00:00 2001 From: "qiankun.miao" Date: Mon, 7 Jul 2014 09:47:24 -0700 Subject: Enable 32/64-bit gyp switch on Android Select 32/64-bit Skia build according skia_arch_width on Android. BUG=skia: R=djsollen@google.com, mtklein@google.com Author: qiankun.miao@intel.com Review URL: https://codereview.chromium.org/369813003 --- gyp/common_conditions.gypi | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'gyp') diff --git a/gyp/common_conditions.gypi b/gyp/common_conditions.gypi index cfc6d32edc..5965927660 100644 --- a/gyp/common_conditions.gypi +++ b/gyp/common_conditions.gypi @@ -191,6 +191,26 @@ '-Wno-invalid-offsetof', # GCC <4.6 is old-school strict about what is POD. ], 'conditions': [ + [ 'skia_os != "chromeos"', { + 'conditions': [ + [ 'skia_arch_width == 64 and skia_arch_type == "x86"', { + 'cflags': [ + '-m64', + ], + 'ldflags': [ + '-m64', + ], + }], + [ 'skia_arch_width == 32 and skia_arch_type == "x86"', { + 'cflags': [ + '-m32', + ], + 'ldflags': [ + '-m32', + ], + }], + ], + }], [ 'skia_android_framework==0', { 'cflags': [ # This flag is not supported by Android build system. @@ -422,26 +442,6 @@ ], }, }], - [ 'skia_os != "chromeos"', { - 'conditions': [ - [ 'skia_arch_width == 64 and skia_arch_type == "x86"', { - 'cflags': [ - '-m64', - ], - 'ldflags': [ - '-m64', - ], - }], - [ 'skia_arch_width == 32 and skia_arch_type == "x86"', { - 'cflags': [ - '-m32', - ], - 'ldflags': [ - '-m32', - ], - }], - ], - }], # Enable asan, tsan, etc. [ 'skia_sanitizer', { 'cflags': [ -- cgit v1.2.3