[GN] Add support for disabling opts via SK_BUILD_NO_OPTS define.
authorsdefresne <sdefresne@chromium.org>
Wed, 1 Jun 2016 14:08:56 +0000 (07:08 -0700)
committerCommit bot <commit-bot@chromium.org>
Wed, 1 Jun 2016 14:08:56 +0000 (07:08 -0700)
commite3fa811657ecf4ab694d026752a81080c6b10611
tree59836ffdb94ac987cd68fb6270e5e3d21cd56273
parentba150cc283301a28693a18d4aa9d14b1a1616ab3
[GN] Add support for disabling opts via SK_BUILD_NO_OPTS define.

When targetting iOS and using gyp to generate the build files, it is not
possible to select files to build depending on the architecture. Due to
that, the skia code was disabling all optimisation when SK_BUILD_FOR_IOS
was defined.

Since it is possible to select the correct optimised version when using
gn, this pessimisation is hurting the build. Introduce a new define to
disable the optimisation SK_BUILD_NO_OPTS. It will be used by Chromium
when building skia for iOS with gyp but not gn.

Define SK_BUILD_NO_OPTS along-side SK_BUILD_FOR_IOS for all files that
look like build configuration (Xcode projects, gyp configuration files,
public.bzl) in order to avoid introducing breakage on those builds.

BUG=607933
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2002423002

Review-Url: https://codereview.chromium.org/2002423002
bench/SkBlend_optsBench.cpp
experimental/iOSSampleApp/SkiOSSampleApp-Debug.xcconfig
experimental/iOSSampleApp/SkiOSSampleApp-Release.xcconfig
experimental/iOSSampleApp/iOSSampleApp.xcodeproj/project.pbxproj
gyp/common_conditions.gypi
include/core/SkPreConfig.h
public.bzl
src/core/SkOpts.cpp
tests/SkBlend_optsTest.cpp