scroggo | df1c337 | 2015-02-12 10:48:25 -0800 | [diff] [blame^] | 1 | # Gyp file for building opts target. |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 2 | { |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 3 | # Source lists live in opts.gypi. This makes it easier to maintain our Chrome GYP/GN setup. |
| 4 | # (To be honest, I'm not sure why we need to include common.gypi. I thought it was automatic.) |
| 5 | 'variables': { |
| 6 | 'includes': [ 'common.gypi', 'opts.gypi' ], |
| 7 | }, |
mtklein | 0933725 | 2015-01-26 18:15:31 -0800 | [diff] [blame] | 8 | |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 9 | # Generally we shove things into one 'opts' target conditioned on platform. |
| 10 | # If a particular platform needs some files built with different flags, |
| 11 | # those become separate targets: opts_ssse3, opts_sse41, opts_neon. |
| 12 | |
| 13 | 'targets': [ |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 14 | { |
| 15 | 'target_name': 'opts', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 16 | 'product_name': 'skia_opts', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 17 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 18 | 'standalone_static_library': 1, |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 19 | 'dependencies': [ |
| 20 | 'core.gyp:*', |
senorblanco@chromium.org | 0ded88d | 2014-01-24 15:43:50 +0000 | [diff] [blame] | 21 | 'effects.gyp:*' |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 22 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 23 | 'include_dirs': [ |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 24 | '../src/core', |
djsollen@google.com | a44e6c6 | 2012-01-09 14:38:25 +0000 | [diff] [blame] | 25 | '../src/opts', |
krajcevski | 630598c | 2014-07-14 12:00:04 -0700 | [diff] [blame] | 26 | '../src/utils', |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 27 | '../include/utils', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 28 | ], |
| 29 | 'conditions': [ |
scroggo | df1c337 | 2015-02-12 10:48:25 -0800 | [diff] [blame^] | 30 | [ '"x86" in skia_arch_type and skia_os != "ios"', { |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 31 | 'cflags': [ '-msse2' ], |
mtklein | d160192 | 2015-02-10 18:18:18 -0800 | [diff] [blame] | 32 | 'dependencies': [ 'opts_ssse3', 'opts_sse41' ], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 33 | 'sources': [ '<@(sse2_sources)' ], |
mtklein | c98fe3a | 2015-01-26 18:05:37 -0800 | [diff] [blame] | 34 | }], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 35 | |
| 36 | [ 'skia_arch_type == "mips"', { |
| 37 | 'conditions': [ |
| 38 | [ '(mips_arch_variant == "mips32r2") and (mips_dsp == 1 or mips_dsp == 2)', { |
| 39 | 'sources': [ '<@(mips_dsp_sources)' ], |
| 40 | },{ |
| 41 | 'sources': [ '<@(none_sources)' ], |
| 42 | }], |
| 43 | ] |
| 44 | }], |
| 45 | |
| 46 | [ '(skia_arch_type == "arm" and arm_version < 7) \ |
| 47 | or (skia_os == "ios") \ |
scroggo | df1c337 | 2015-02-12 10:48:25 -0800 | [diff] [blame^] | 48 | or (skia_os == "android" \ |
| 49 | and skia_arch_type not in ["x86", "x86_64", "arm", "mips", \ |
| 50 | "arm64"])', { |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 51 | 'sources': [ '<@(none_sources)' ], |
| 52 | }], |
| 53 | |
djsollen@google.com | f7542ba | 2013-07-31 12:57:27 +0000 | [diff] [blame] | 54 | [ 'skia_arch_type == "arm" and arm_version >= 7', { |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 55 | # The assembly uses the frame pointer register (r7 in Thumb/r11 in |
| 56 | # ARM), the compiler doesn't like that. |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 57 | 'cflags!': [ '-fno-omit-frame-pointer', '-mapcs-frame', '-mapcs' ], |
| 58 | 'cflags': [ '-fomit-frame-pointer' ], |
| 59 | 'variables': { 'arm_neon_optional%': '<(arm_neon_optional>' }, |
| 60 | 'sources': [ '<@(armv7_sources)' ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 61 | 'conditions': [ |
| 62 | [ 'arm_neon == 1 or arm_neon_optional == 1', { |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 63 | 'dependencies': [ 'opts_neon' ] |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 64 | }], |
| 65 | [ 'skia_os == "ios"', { |
| 66 | 'sources!': [ |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 67 | # these fail to compile under xcode for ios |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 68 | '../src/opts/memset.arm.S', |
caryclark@google.com | 594dd3c | 2012-09-24 19:33:57 +0000 | [diff] [blame] | 69 | '../src/opts/SkBitmapProcState_opts_arm.cpp', |
| 70 | '../src/opts/SkBlitRow_opts_arm.cpp', |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 71 | ], |
| 72 | }], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 73 | ], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 74 | }], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 75 | |
| 76 | [ 'skia_arch_type == "arm64"', { |
| 77 | 'sources': [ '<@(arm64_sources)' ], |
djordje.pesut | 632a454 | 2014-06-11 06:56:10 -0700 | [diff] [blame] | 78 | }], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 79 | |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 80 | [ 'skia_android_framework', { |
| 81 | 'cflags!': [ |
| 82 | '-msse2', |
| 83 | '-mfpu=neon', |
| 84 | '-fomit-frame-pointer', |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 85 | ] |
| 86 | }], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 87 | ], |
| 88 | }, |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 89 | { |
| 90 | 'target_name': 'opts_ssse3', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 91 | 'product_name': 'skia_opts_ssse3', |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 92 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 93 | 'standalone_static_library': 1, |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 94 | 'dependencies': [ 'core.gyp:*' ], |
| 95 | 'include_dirs': [ '../src/core' ], |
| 96 | 'sources': [ '<@(ssse3_sources)' ], |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 97 | 'conditions': [ |
djsollen | bc89329 | 2014-07-24 13:53:56 -0700 | [diff] [blame] | 98 | [ 'skia_os == "win"', { |
| 99 | 'defines' : [ 'SK_CPU_SSE_LEVEL=31' ], |
| 100 | }], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 101 | [ 'not skia_android_framework', { |
| 102 | 'cflags': [ '-mssse3' ], |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 103 | }], |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 104 | ], |
| 105 | }, |
henrik.smiding | 3bb195e | 2014-06-27 08:03:17 -0700 | [diff] [blame] | 106 | { |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 107 | 'target_name': 'opts_sse41', |
| 108 | 'product_name': 'skia_opts_sse41', |
henrik.smiding | 3bb195e | 2014-06-27 08:03:17 -0700 | [diff] [blame] | 109 | 'type': 'static_library', |
| 110 | 'standalone_static_library': 1, |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 111 | 'dependencies': [ 'core.gyp:*' ], |
| 112 | 'sources': [ '<@(sse41_sources)' ], |
henrik.smiding | 3bb195e | 2014-06-27 08:03:17 -0700 | [diff] [blame] | 113 | 'conditions': [ |
djsollen | bc89329 | 2014-07-24 13:53:56 -0700 | [diff] [blame] | 114 | [ 'skia_os == "win"', { |
| 115 | 'defines' : [ 'SK_CPU_SSE_LEVEL=41' ], |
| 116 | }], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 117 | [ 'not skia_android_framework', { |
| 118 | 'cflags': [ '-msse4.1' ], |
henrik.smiding | 3bb195e | 2014-06-27 08:03:17 -0700 | [diff] [blame] | 119 | }], |
henrik.smiding | 5f7f9d0 | 2014-07-07 08:05:40 -0700 | [diff] [blame] | 120 | [ 'skia_os == "mac"', { |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 121 | 'xcode_settings': { 'GCC_ENABLE_SSE41_EXTENSIONS': 'YES' }, |
henrik.smiding | 5f7f9d0 | 2014-07-07 08:05:40 -0700 | [diff] [blame] | 122 | }], |
henrik.smiding | 3bb195e | 2014-06-27 08:03:17 -0700 | [diff] [blame] | 123 | ], |
| 124 | }, |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 125 | { |
| 126 | 'target_name': 'opts_neon', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 127 | 'product_name': 'skia_opts_neon', |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 128 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 129 | 'standalone_static_library': 1, |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 130 | 'dependencies': [ |
| 131 | 'core.gyp:*', |
senorblanco@chromium.org | 0ded88d | 2014-01-24 15:43:50 +0000 | [diff] [blame] | 132 | 'effects.gyp:*' |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 133 | ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 134 | 'include_dirs': [ |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 135 | '../src/core', |
digit@google.com | fce02ac | 2012-08-01 14:25:07 +0000 | [diff] [blame] | 136 | '../src/opts', |
krajcevski | 630598c | 2014-07-14 12:00:04 -0700 | [diff] [blame] | 137 | '../src/utils', |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 138 | ], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 139 | 'sources': [ '<@(neon_sources)' ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 140 | 'cflags!': [ |
| 141 | '-fno-omit-frame-pointer', |
| 142 | '-mfpu=vfp', # remove them all, just in case. |
| 143 | '-mfpu=vfpv3', |
| 144 | '-mfpu=vfpv3-d16', |
| 145 | ], |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 146 | 'conditions': [ |
| 147 | [ 'not skia_android_framework', { |
| 148 | 'cflags': [ |
| 149 | '-mfpu=neon', |
| 150 | '-fomit-frame-pointer', |
| 151 | ], |
| 152 | }], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 153 | ], |
djsollen@google.com | 4dcc624 | 2013-01-23 18:56:38 +0000 | [diff] [blame] | 154 | 'ldflags': [ |
| 155 | '-march=armv7-a', |
| 156 | '-Wl,--fix-cortex-a8', |
| 157 | ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 158 | }, |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 159 | ], |
| 160 | } |