blob: 30f464f37d52434c5ad99042129dc86fd7ea9438 [file] [log] [blame]
epoger@google.comae85aea2011-05-31 13:50:51 +00001{
epoger@google.comae85aea2011-05-31 13:50:51 +00002 'targets': [
3 # Due to an unfortunate intersection of lameness between gcc and gyp,
4 # we have to build the *_SSE2.cpp files in a separate target. The
5 # gcc lameness is that, in order to compile SSE2 intrinsics code, it
6 # must be passed the -msse2 flag. However, with this flag, it may
7 # emit SSE2 instructions even for scalar code, such as the CPUID
8 # test used to test for the presence of SSE2. So that, and all other
9 # code must be compiled *without* -msse2. The gyp lameness is that it
10 # does not allow file-specific CFLAGS, so we must create this extra
11 # target for those files to be compiled with -msse2.
12 #
13 # This is actually only a problem on 32-bit Linux (all Intel Macs have
14 # SSE2, Linux x86_64 has SSE2 by definition, and MSC will happily emit
15 # SSE2 from instrinsics, while generating plain ol' 386 for everything
16 # else). However, to keep the .gyp file simple and avoid platform-specific
17 # build breakage, we do this on all platforms.
18
19 # For about the same reason, we need to compile the ARM opts files
20 # separately as well.
21 {
22 'target_name': 'opts',
borenet@google.comefb1d772012-10-10 19:45:51 +000023 'product_name': 'skia_opts',
epoger@google.comae85aea2011-05-31 13:50:51 +000024 'type': 'static_library',
borenet@google.comefb1d772012-10-10 19:45:51 +000025 'standalone_static_library': 1,
epoger@google.comae85aea2011-05-31 13:50:51 +000026 'include_dirs': [
27 '../include/config',
28 '../include/core',
29 '../src/core',
djsollen@google.coma44e6c62012-01-09 14:38:25 +000030 '../src/opts',
epoger@google.comae85aea2011-05-31 13:50:51 +000031 ],
32 'conditions': [
caryclark@google.com867cbd82012-09-20 15:45:41 +000033 [ 'skia_arch_type == "x86" and skia_os != "ios"', {
tomhudson@google.com95ad1552012-02-14 18:28:54 +000034 'conditions': [
borenet@google.com7158e6a2012-11-01 17:43:44 +000035 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl"]', {
tomhudson@google.com95ad1552012-02-14 18:28:54 +000036 'cflags': [
37 '-msse2',
38 ],
39 }],
djsollen@google.com98d97fc2013-01-18 15:21:54 +000040 [ 'skia_os != "android"', {
41 'dependencies': [
42 'opts_ssse3',
43 ],
44 }],
tomhudson@google.com95ad1552012-02-14 18:28:54 +000045 ],
djsollen@google.com58629292011-11-03 13:08:29 +000046 'sources': [
djsollen@google.coma44e6c62012-01-09 14:38:25 +000047 '../src/opts/opts_check_SSE2.cpp',
djsollen@google.com58629292011-11-03 13:08:29 +000048 '../src/opts/SkBitmapProcState_opts_SSE2.cpp',
49 '../src/opts/SkBlitRow_opts_SSE2.cpp',
tomhudson@google.com8dd90a92012-03-19 13:49:50 +000050 '../src/opts/SkBlitRect_opts_SSE2.cpp',
djsollen@google.com58629292011-11-03 13:08:29 +000051 '../src/opts/SkUtils_opts_SSE2.cpp',
52 ],
53 }],
djsollen@google.come341cb32012-06-28 16:08:05 +000054 [ 'skia_arch_type == "arm" and armv7 == 1', {
djsollen@google.com58629292011-11-03 13:08:29 +000055 # The assembly uses the frame pointer register (r7 in Thumb/r11 in
56 # ARM), the compiler doesn't like that.
57 'cflags!': [
58 '-fno-omit-frame-pointer',
djsollen@google.com5afbbc42012-11-29 15:09:58 +000059 '-mapcs-frame',
60 '-mapcs',
djsollen@google.com58629292011-11-03 13:08:29 +000061 ],
62 'cflags': [
63 '-fomit-frame-pointer',
djsollen@google.com5afbbc42012-11-29 15:09:58 +000064 '-mno-apcs-frame',
djsollen@google.com58629292011-11-03 13:08:29 +000065 ],
digit@google.comeec9dbc2012-05-30 13:54:41 +000066 'variables': {
67 'arm_neon_optional%': '<(arm_neon_optional>',
68 },
djsollen@google.com58629292011-11-03 13:08:29 +000069 'sources': [
djsollen@google.coma44e6c62012-01-09 14:38:25 +000070 '../src/opts/opts_check_arm.cpp',
71 '../src/opts/memset.arm.S',
djsollen@google.com58629292011-11-03 13:08:29 +000072 '../src/opts/SkBitmapProcState_opts_arm.cpp',
73 '../src/opts/SkBlitRow_opts_arm.cpp',
digit@google.coma8dd1ce2012-08-08 22:06:29 +000074 '../src/opts/SkBlitRow_opts_arm.h',
djsollen@google.com58629292011-11-03 13:08:29 +000075 ],
digit@google.comeec9dbc2012-05-30 13:54:41 +000076 'conditions': [
77 [ 'arm_neon == 1 or arm_neon_optional == 1', {
78 'dependencies': [
79 'opts_neon',
80 ]
caryclark@google.com867cbd82012-09-20 15:45:41 +000081 }],
82 [ 'skia_os == "ios"', {
83 'sources!': [
caryclark@google.com594dd3c2012-09-24 19:33:57 +000084 # these fail to compile under xcode for ios
caryclark@google.com867cbd82012-09-20 15:45:41 +000085 '../src/opts/memset.arm.S',
caryclark@google.com594dd3c2012-09-24 19:33:57 +000086 '../src/opts/SkBitmapProcState_opts_arm.cpp',
87 '../src/opts/SkBlitRow_opts_arm.cpp',
caryclark@google.com867cbd82012-09-20 15:45:41 +000088 ],
89 }],
digit@google.comeec9dbc2012-05-30 13:54:41 +000090 ],
djsollen@google.com58629292011-11-03 13:08:29 +000091 }],
caryclark@google.com594dd3c2012-09-24 19:33:57 +000092 [ '(skia_arch_type == "arm" and armv7 == 0) or (skia_os == "ios")', {
djsollen@google.com58629292011-11-03 13:08:29 +000093 'sources': [
94 '../src/opts/SkBitmapProcState_opts_none.cpp',
95 '../src/opts/SkBlitRow_opts_none.cpp',
96 '../src/opts/SkUtils_opts_none.cpp',
97 ],
98 }],
epoger@google.comae85aea2011-05-31 13:50:51 +000099 ],
100 },
tomhudson@google.com95ad1552012-02-14 18:28:54 +0000101 # For the same lame reasons as what is done for skia_opts, we have to
102 # create another target specifically for SSSE3 code as we would not want
103 # to compile the SSE2 code with -mssse3 which would potentially allow
104 # gcc to generate SSSE3 code.
105 {
106 'target_name': 'opts_ssse3',
borenet@google.comefb1d772012-10-10 19:45:51 +0000107 'product_name': 'skia_opts_ssse3',
tomhudson@google.com95ad1552012-02-14 18:28:54 +0000108 'type': 'static_library',
borenet@google.comefb1d772012-10-10 19:45:51 +0000109 'standalone_static_library': 1,
tomhudson@google.com95ad1552012-02-14 18:28:54 +0000110 'include_dirs': [
111 '../include/config',
112 '../include/core',
113 '../src/core',
114 ],
115 'conditions': [
borenet@google.com7158e6a2012-11-01 17:43:44 +0000116 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl"]', {
tomhudson@google.com95ad1552012-02-14 18:28:54 +0000117 'cflags': [
118 '-mssse3',
119 ],
120 }],
epoger@google.com21099232012-02-14 19:49:19 +0000121 # TODO(epoger): the following will enable SSSE3 on Macs, but it will
122 # break once we set OTHER_CFLAGS anywhere else (the first setting will
123 # be replaced, not added to)
124 [ 'skia_os in ["mac"]', {
125 'xcode_settings': {
126 'OTHER_CFLAGS': ['-mssse3',],
127 },
128 }],
djsollen@google.come341cb32012-06-28 16:08:05 +0000129 [ 'skia_arch_type == "x86"', {
tomhudson@google.com95ad1552012-02-14 18:28:54 +0000130 'sources': [
131 '../src/opts/SkBitmapProcState_opts_SSSE3.cpp',
132 ],
133 }],
134 ],
135 },
digit@google.comeec9dbc2012-05-30 13:54:41 +0000136 # NEON code must be compiled with -mfpu=neon which also affects scalar
137 # code. To support dynamic NEON code paths, we need to build all
138 # NEON-specific sources in a separate static library. The situation
139 # is very similar to the SSSE3 one.
140 {
141 'target_name': 'opts_neon',
borenet@google.comefb1d772012-10-10 19:45:51 +0000142 'product_name': 'skia_opts_neon',
digit@google.comeec9dbc2012-05-30 13:54:41 +0000143 'type': 'static_library',
borenet@google.comefb1d772012-10-10 19:45:51 +0000144 'standalone_static_library': 1,
digit@google.comeec9dbc2012-05-30 13:54:41 +0000145 'include_dirs': [
146 '../include/config',
147 '../include/core',
148 '../src/core',
digit@google.comfce02ac2012-08-01 14:25:07 +0000149 '../src/opts',
digit@google.comeec9dbc2012-05-30 13:54:41 +0000150 ],
151 'cflags!': [
152 '-fno-omit-frame-pointer',
153 '-mfpu=vfp', # remove them all, just in case.
154 '-mfpu=vfpv3',
155 '-mfpu=vfpv3-d16',
156 ],
157 'cflags': [
digit@google.comeec9dbc2012-05-30 13:54:41 +0000158 '-mfpu=neon',
digit@google.comfce02ac2012-08-01 14:25:07 +0000159 '-fomit-frame-pointer',
digit@google.comeec9dbc2012-05-30 13:54:41 +0000160 ],
djsollen@google.com4dcc6242013-01-23 18:56:38 +0000161 'ldflags': [
162 '-march=armv7-a',
163 '-Wl,--fix-cortex-a8',
164 ],
digit@google.comeec9dbc2012-05-30 13:54:41 +0000165 'sources': [
166 '../src/opts/memset16_neon.S',
167 '../src/opts/memset32_neon.S',
digit@google.com3ada0ef2012-08-13 14:06:34 +0000168 '../src/opts/SkBitmapProcState_arm_neon.cpp',
digit@google.comfce02ac2012-08-01 14:25:07 +0000169 '../src/opts/SkBitmapProcState_matrixProcs_neon.cpp',
170 '../src/opts/SkBitmapProcState_matrix_clamp_neon.h',
171 '../src/opts/SkBitmapProcState_matrix_repeat_neon.h',
digit@google.coma8dd1ce2012-08-08 22:06:29 +0000172 '../src/opts/SkBlitRow_opts_arm_neon.cpp',
digit@google.comeec9dbc2012-05-30 13:54:41 +0000173 ],
174 },
epoger@google.comae85aea2011-05-31 13:50:51 +0000175 ],
176}
177
178# Local Variables:
179# tab-width:2
180# indent-tabs-mode:nil
181# End:
182# vim: set expandtab tabstop=2 shiftwidth=2: