scroggo | 3e56227 | 2015-03-25 10:22:41 -0700 | [diff] [blame] | 1 | # Copyright 2015 Google Inc. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
scroggo | df1c337 | 2015-02-12 10:48:25 -0800 | [diff] [blame] | 5 | # Gyp file for building opts target. |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 6 | { |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 7 | # Source lists live in opts.gypi. This makes it easier to maintain our Chrome GYP/GN setup. |
| 8 | # (To be honest, I'm not sure why we need to include common.gypi. I thought it was automatic.) |
| 9 | 'variables': { |
| 10 | 'includes': [ 'common.gypi', 'opts.gypi' ], |
| 11 | }, |
mtklein | 0933725 | 2015-01-26 18:15:31 -0800 | [diff] [blame] | 12 | |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 13 | # Generally we shove things into one 'opts' target conditioned on platform. |
| 14 | # If a particular platform needs some files built with different flags, |
| 15 | # those become separate targets: opts_ssse3, opts_sse41, opts_neon. |
| 16 | |
| 17 | 'targets': [ |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 18 | { |
| 19 | 'target_name': 'opts', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 20 | 'product_name': 'skia_opts', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 21 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 22 | 'standalone_static_library': 1, |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 23 | 'dependencies': [ |
| 24 | 'core.gyp:*', |
senorblanco@chromium.org | 0ded88d | 2014-01-24 15:43:50 +0000 | [diff] [blame] | 25 | 'effects.gyp:*' |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 26 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 27 | 'include_dirs': [ |
mtklein | cd1f2da | 2015-07-28 08:55:14 -0700 | [diff] [blame] | 28 | '../include/private', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 29 | '../src/core', |
djsollen@google.com | a44e6c6 | 2012-01-09 14:38:25 +0000 | [diff] [blame] | 30 | '../src/opts', |
krajcevski | 630598c | 2014-07-14 12:00:04 -0700 | [diff] [blame] | 31 | '../src/utils', |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 32 | '../include/utils', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 33 | ], |
| 34 | 'conditions': [ |
scroggo | df1c337 | 2015-02-12 10:48:25 -0800 | [diff] [blame] | 35 | [ '"x86" in skia_arch_type and skia_os != "ios"', { |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 36 | 'cflags': [ '-msse2' ], |
mtklein | 5141d90 | 2015-08-24 10:32:02 -0700 | [diff] [blame] | 37 | 'dependencies': [ 'opts_ssse3', 'opts_sse41', 'opts_sse42', 'opts_avx', 'opts_avx2' ], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 38 | 'sources': [ '<@(sse2_sources)' ], |
mtklein | c98fe3a | 2015-01-26 18:05:37 -0800 | [diff] [blame] | 39 | }], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 40 | |
| 41 | [ 'skia_arch_type == "mips"', { |
| 42 | 'conditions': [ |
| 43 | [ '(mips_arch_variant == "mips32r2") and (mips_dsp == 1 or mips_dsp == 2)', { |
| 44 | 'sources': [ '<@(mips_dsp_sources)' ], |
| 45 | },{ |
| 46 | 'sources': [ '<@(none_sources)' ], |
| 47 | }], |
| 48 | ] |
| 49 | }], |
| 50 | |
| 51 | [ '(skia_arch_type == "arm" and arm_version < 7) \ |
mtklein | f3f9440 | 2015-04-17 14:02:40 -0700 | [diff] [blame] | 52 | or (skia_os == "ios") \ |
scroggo | df1c337 | 2015-02-12 10:48:25 -0800 | [diff] [blame] | 53 | or (skia_os == "android" \ |
mtklein | f3f9440 | 2015-04-17 14:02:40 -0700 | [diff] [blame] | 54 | and skia_arch_type not in ["x86", "x86_64", "arm", "mips", \ |
| 55 | "arm64"])', { |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 56 | 'sources': [ '<@(none_sources)' ], |
| 57 | }], |
| 58 | |
djsollen@google.com | f7542ba | 2013-07-31 12:57:27 +0000 | [diff] [blame] | 59 | [ 'skia_arch_type == "arm" and arm_version >= 7', { |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 60 | # The assembly uses the frame pointer register (r7 in Thumb/r11 in |
| 61 | # ARM), the compiler doesn't like that. |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 62 | 'cflags!': [ '-fno-omit-frame-pointer', '-mapcs-frame', '-mapcs' ], |
| 63 | 'cflags': [ '-fomit-frame-pointer' ], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 64 | 'sources': [ '<@(armv7_sources)' ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 65 | 'conditions': [ |
mtklein | 809ccf3 | 2016-05-05 10:58:39 -0700 | [diff] [blame] | 66 | [ 'arm_neon == 1', { |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 67 | 'dependencies': [ 'opts_neon' ] |
caryclark@google.com | 867cbd8 | 2012-09-20 15:45:41 +0000 | [diff] [blame] | 68 | }], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 69 | ], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 70 | }], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 71 | |
| 72 | [ 'skia_arch_type == "arm64"', { |
| 73 | 'sources': [ '<@(arm64_sources)' ], |
djordje.pesut | 632a454 | 2014-06-11 06:56:10 -0700 | [diff] [blame] | 74 | }], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 75 | |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 76 | [ 'skia_android_framework', { |
| 77 | 'cflags!': [ |
| 78 | '-msse2', |
| 79 | '-mfpu=neon', |
| 80 | '-fomit-frame-pointer', |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 81 | ] |
| 82 | }], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 83 | ], |
| 84 | }, |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 85 | { |
| 86 | 'target_name': 'opts_ssse3', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 87 | 'product_name': 'skia_opts_ssse3', |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 88 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 89 | 'standalone_static_library': 1, |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 90 | 'dependencies': [ 'core.gyp:*' ], |
mtklein | cd1f2da | 2015-07-28 08:55:14 -0700 | [diff] [blame] | 91 | 'include_dirs': [ |
| 92 | '../include/private', |
| 93 | '../src/core', |
mtklein | b639474 | 2015-08-06 08:17:16 -0700 | [diff] [blame] | 94 | '../src/utils', |
mtklein | cd1f2da | 2015-07-28 08:55:14 -0700 | [diff] [blame] | 95 | ], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 96 | 'sources': [ '<@(ssse3_sources)' ], |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 97 | 'conditions': [ |
mtklein | 8553396 | 2015-08-25 06:30:07 -0700 | [diff] [blame] | 98 | [ 'skia_os == "win"', { 'defines' : [ 'SK_CPU_SSE_LEVEL=31' ] }], |
| 99 | [ 'not skia_android_framework', { 'cflags': [ '-mssse3' ] }], |
tomhudson@google.com | 95ad155 | 2012-02-14 18:28:54 +0000 | [diff] [blame] | 100 | ], |
| 101 | }, |
henrik.smiding | 3bb195e | 2014-06-27 08:03:17 -0700 | [diff] [blame] | 102 | { |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 103 | 'target_name': 'opts_sse41', |
| 104 | 'product_name': 'skia_opts_sse41', |
henrik.smiding | 3bb195e | 2014-06-27 08:03:17 -0700 | [diff] [blame] | 105 | 'type': 'static_library', |
| 106 | 'standalone_static_library': 1, |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 107 | 'dependencies': [ 'core.gyp:*' ], |
mtklein | cd1f2da | 2015-07-28 08:55:14 -0700 | [diff] [blame] | 108 | 'include_dirs': [ |
| 109 | '../include/private', |
| 110 | '../src/core', |
mtklein | b639474 | 2015-08-06 08:17:16 -0700 | [diff] [blame] | 111 | '../src/utils', |
mtklein | cd1f2da | 2015-07-28 08:55:14 -0700 | [diff] [blame] | 112 | ], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 113 | 'sources': [ '<@(sse41_sources)' ], |
mtklein | 8553396 | 2015-08-25 06:30:07 -0700 | [diff] [blame] | 114 | 'xcode_settings': { 'GCC_ENABLE_SSE41_EXTENSIONS': 'YES' }, |
henrik.smiding | 3bb195e | 2014-06-27 08:03:17 -0700 | [diff] [blame] | 115 | 'conditions': [ |
mtklein | 8553396 | 2015-08-25 06:30:07 -0700 | [diff] [blame] | 116 | [ 'skia_os == "win"', { 'defines' : [ 'SK_CPU_SSE_LEVEL=41' ] }], |
| 117 | [ 'not skia_android_framework', { 'cflags': [ '-msse4.1' ] }], |
henrik.smiding | 3bb195e | 2014-06-27 08:03:17 -0700 | [diff] [blame] | 118 | ], |
| 119 | }, |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 120 | { |
mtklein | 5141d90 | 2015-08-24 10:32:02 -0700 | [diff] [blame] | 121 | 'target_name': 'opts_sse42', |
| 122 | 'product_name': 'skia_opts_sse42', |
| 123 | 'type': 'static_library', |
| 124 | 'standalone_static_library': 1, |
| 125 | 'dependencies': [ 'core.gyp:*' ], |
| 126 | 'include_dirs': [ |
| 127 | '../include/private', |
| 128 | '../src/core', |
| 129 | '../src/utils', |
| 130 | ], |
| 131 | 'sources': [ '<@(sse42_sources)' ], |
mtklein | 8553396 | 2015-08-25 06:30:07 -0700 | [diff] [blame] | 132 | 'xcode_settings': { 'GCC_ENABLE_SSE42_EXTENSIONS': 'YES' }, |
mtklein | 5141d90 | 2015-08-24 10:32:02 -0700 | [diff] [blame] | 133 | 'conditions': [ |
mtklein | 8553396 | 2015-08-25 06:30:07 -0700 | [diff] [blame] | 134 | [ 'skia_os == "win"', { 'defines' : [ 'SK_CPU_SSE_LEVEL=42' ] }], |
| 135 | [ 'not skia_android_framework', { 'cflags': [ '-msse4.2' ] }], |
mtklein | 5141d90 | 2015-08-24 10:32:02 -0700 | [diff] [blame] | 136 | ], |
| 137 | }, |
| 138 | { |
| 139 | 'target_name': 'opts_avx', |
| 140 | 'product_name': 'skia_opts_avx', |
| 141 | 'type': 'static_library', |
| 142 | 'standalone_static_library': 1, |
| 143 | 'dependencies': [ 'core.gyp:*' ], |
| 144 | 'include_dirs': [ |
| 145 | '../include/private', |
| 146 | '../src/core', |
| 147 | '../src/utils', |
| 148 | ], |
| 149 | 'sources': [ '<@(avx_sources)' ], |
mtklein | 8553396 | 2015-08-25 06:30:07 -0700 | [diff] [blame] | 150 | 'msvs_settings': { 'VCCLCompilerTool': { 'EnableEnhancedInstructionSet': '3' } }, |
mtklein | 2047334 | 2016-01-25 09:26:54 -0800 | [diff] [blame] | 151 | 'xcode_settings': { 'OTHER_CPLUSPLUSFLAGS': [ '-mavx' ] }, |
mtklein | 5141d90 | 2015-08-24 10:32:02 -0700 | [diff] [blame] | 152 | 'conditions': [ |
mtklein | 8553396 | 2015-08-25 06:30:07 -0700 | [diff] [blame] | 153 | [ 'not skia_android_framework', { 'cflags': [ '-mavx' ] }], |
mtklein | 5141d90 | 2015-08-24 10:32:02 -0700 | [diff] [blame] | 154 | ], |
| 155 | }, |
| 156 | { |
| 157 | 'target_name': 'opts_avx2', |
| 158 | 'product_name': 'skia_opts_avx2', |
| 159 | 'type': 'static_library', |
| 160 | 'standalone_static_library': 1, |
| 161 | 'dependencies': [ 'core.gyp:*' ], |
| 162 | 'include_dirs': [ |
| 163 | '../include/private', |
| 164 | '../src/core', |
| 165 | '../src/utils', |
| 166 | ], |
| 167 | 'sources': [ '<@(avx2_sources)' ], |
mtklein | 8553396 | 2015-08-25 06:30:07 -0700 | [diff] [blame] | 168 | 'msvs_settings': { 'VCCLCompilerTool': { 'EnableEnhancedInstructionSet': '5' } }, |
mtklein | 2047334 | 2016-01-25 09:26:54 -0800 | [diff] [blame] | 169 | 'xcode_settings': { 'OTHER_CPLUSPLUSFLAGS': [ '-mavx2' ] }, |
mtklein | 5141d90 | 2015-08-24 10:32:02 -0700 | [diff] [blame] | 170 | 'conditions': [ |
mtklein | 8553396 | 2015-08-25 06:30:07 -0700 | [diff] [blame] | 171 | [ 'not skia_android_framework', { 'cflags': [ '-mavx2' ] }], |
mtklein | 5141d90 | 2015-08-24 10:32:02 -0700 | [diff] [blame] | 172 | ], |
| 173 | }, |
| 174 | { |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 175 | 'target_name': 'opts_neon', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 176 | 'product_name': 'skia_opts_neon', |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 177 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 178 | 'standalone_static_library': 1, |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 179 | 'dependencies': [ |
| 180 | 'core.gyp:*', |
senorblanco@chromium.org | 0ded88d | 2014-01-24 15:43:50 +0000 | [diff] [blame] | 181 | 'effects.gyp:*' |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 182 | ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 183 | 'include_dirs': [ |
mtklein | cd1f2da | 2015-07-28 08:55:14 -0700 | [diff] [blame] | 184 | '../include/private', |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 185 | '../src/core', |
digit@google.com | fce02ac | 2012-08-01 14:25:07 +0000 | [diff] [blame] | 186 | '../src/opts', |
krajcevski | 630598c | 2014-07-14 12:00:04 -0700 | [diff] [blame] | 187 | '../src/utils', |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 188 | ], |
mtklein | f7069d5 | 2015-01-26 18:55:58 -0800 | [diff] [blame] | 189 | 'sources': [ '<@(neon_sources)' ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 190 | 'cflags!': [ |
| 191 | '-fno-omit-frame-pointer', |
| 192 | '-mfpu=vfp', # remove them all, just in case. |
| 193 | '-mfpu=vfpv3', |
| 194 | '-mfpu=vfpv3-d16', |
| 195 | ], |
commit-bot@chromium.org | e72a408 | 2014-02-28 16:07:39 +0000 | [diff] [blame] | 196 | 'conditions': [ |
| 197 | [ 'not skia_android_framework', { |
| 198 | 'cflags': [ |
| 199 | '-mfpu=neon', |
| 200 | '-fomit-frame-pointer', |
| 201 | ], |
| 202 | }], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 203 | ], |
djsollen@google.com | 4dcc624 | 2013-01-23 18:56:38 +0000 | [diff] [blame] | 204 | 'ldflags': [ |
| 205 | '-march=armv7-a', |
| 206 | '-Wl,--fix-cortex-a8', |
| 207 | ], |
digit@google.com | eec9dbc | 2012-05-30 13:54:41 +0000 | [diff] [blame] | 208 | }, |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 209 | ], |
| 210 | } |