blob: e5ceb36aa76f964e1eed09449c6e06a687597ba6 [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',
23 'type': 'static_library',
24 'include_dirs': [
25 '../include/config',
26 '../include/core',
27 '../src/core',
djsollen@google.coma44e6c62012-01-09 14:38:25 +000028 '../src/opts',
epoger@google.comae85aea2011-05-31 13:50:51 +000029 ],
30 'conditions': [
caryclark@google.com867cbd82012-09-20 15:45:41 +000031 [ 'skia_arch_type == "x86" and skia_os != "ios"', {
tomhudson@google.com95ad1552012-02-14 18:28:54 +000032 'conditions': [
33 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
34 'cflags': [
35 '-msse2',
36 ],
37 }],
38 ],
djsollen@google.com58629292011-11-03 13:08:29 +000039 'sources': [
djsollen@google.coma44e6c62012-01-09 14:38:25 +000040 '../src/opts/opts_check_SSE2.cpp',
djsollen@google.com58629292011-11-03 13:08:29 +000041 '../src/opts/SkBitmapProcState_opts_SSE2.cpp',
42 '../src/opts/SkBlitRow_opts_SSE2.cpp',
tomhudson@google.com8dd90a92012-03-19 13:49:50 +000043 '../src/opts/SkBlitRect_opts_SSE2.cpp',
djsollen@google.com58629292011-11-03 13:08:29 +000044 '../src/opts/SkUtils_opts_SSE2.cpp',
45 ],
tomhudson@google.com95ad1552012-02-14 18:28:54 +000046 'dependencies': [
47 'opts_ssse3',
48 ],
djsollen@google.com58629292011-11-03 13:08:29 +000049 }],
djsollen@google.come341cb32012-06-28 16:08:05 +000050 [ 'skia_arch_type == "arm" and armv7 == 1', {
djsollen@google.com58629292011-11-03 13:08:29 +000051 # The assembly uses the frame pointer register (r7 in Thumb/r11 in
52 # ARM), the compiler doesn't like that.
53 'cflags!': [
54 '-fno-omit-frame-pointer',
55 ],
56 'cflags': [
57 '-fomit-frame-pointer',
58 ],
digit@google.comeec9dbc2012-05-30 13:54:41 +000059 'variables': {
60 'arm_neon_optional%': '<(arm_neon_optional>',
61 },
djsollen@google.com58629292011-11-03 13:08:29 +000062 'sources': [
djsollen@google.coma44e6c62012-01-09 14:38:25 +000063 '../src/opts/opts_check_arm.cpp',
64 '../src/opts/memset.arm.S',
djsollen@google.com58629292011-11-03 13:08:29 +000065 '../src/opts/SkBitmapProcState_opts_arm.cpp',
66 '../src/opts/SkBlitRow_opts_arm.cpp',
digit@google.coma8dd1ce2012-08-08 22:06:29 +000067 '../src/opts/SkBlitRow_opts_arm.h',
djsollen@google.com58629292011-11-03 13:08:29 +000068 ],
digit@google.comeec9dbc2012-05-30 13:54:41 +000069 'conditions': [
70 [ 'arm_neon == 1 or arm_neon_optional == 1', {
71 'dependencies': [
72 'opts_neon',
73 ]
caryclark@google.com867cbd82012-09-20 15:45:41 +000074 }],
75 [ 'skia_os == "ios"', {
76 'sources!': [
caryclark@google.com594dd3c2012-09-24 19:33:57 +000077 # these fail to compile under xcode for ios
caryclark@google.com867cbd82012-09-20 15:45:41 +000078 '../src/opts/memset.arm.S',
caryclark@google.com594dd3c2012-09-24 19:33:57 +000079 '../src/opts/SkBitmapProcState_opts_arm.cpp',
80 '../src/opts/SkBlitRow_opts_arm.cpp',
caryclark@google.com867cbd82012-09-20 15:45:41 +000081 ],
82 }],
digit@google.comeec9dbc2012-05-30 13:54:41 +000083 ],
djsollen@google.com58629292011-11-03 13:08:29 +000084 }],
caryclark@google.com594dd3c2012-09-24 19:33:57 +000085 [ '(skia_arch_type == "arm" and armv7 == 0) or (skia_os == "ios")', {
djsollen@google.com58629292011-11-03 13:08:29 +000086 'sources': [
87 '../src/opts/SkBitmapProcState_opts_none.cpp',
88 '../src/opts/SkBlitRow_opts_none.cpp',
89 '../src/opts/SkUtils_opts_none.cpp',
90 ],
91 }],
epoger@google.comae85aea2011-05-31 13:50:51 +000092 ],
93 },
tomhudson@google.com95ad1552012-02-14 18:28:54 +000094 # For the same lame reasons as what is done for skia_opts, we have to
95 # create another target specifically for SSSE3 code as we would not want
96 # to compile the SSE2 code with -mssse3 which would potentially allow
97 # gcc to generate SSSE3 code.
98 {
99 'target_name': 'opts_ssse3',
100 'type': 'static_library',
101 'include_dirs': [
102 '../include/config',
103 '../include/core',
104 '../src/core',
105 ],
106 'conditions': [
epoger@google.com21099232012-02-14 19:49:19 +0000107 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
tomhudson@google.com95ad1552012-02-14 18:28:54 +0000108 'cflags': [
109 '-mssse3',
110 ],
111 }],
epoger@google.com21099232012-02-14 19:49:19 +0000112 # TODO(epoger): the following will enable SSSE3 on Macs, but it will
113 # break once we set OTHER_CFLAGS anywhere else (the first setting will
114 # be replaced, not added to)
115 [ 'skia_os in ["mac"]', {
116 'xcode_settings': {
117 'OTHER_CFLAGS': ['-mssse3',],
118 },
119 }],
djsollen@google.come341cb32012-06-28 16:08:05 +0000120 [ 'skia_arch_type == "x86"', {
tomhudson@google.com95ad1552012-02-14 18:28:54 +0000121 'sources': [
122 '../src/opts/SkBitmapProcState_opts_SSSE3.cpp',
123 ],
124 }],
125 ],
126 },
digit@google.comeec9dbc2012-05-30 13:54:41 +0000127 # NEON code must be compiled with -mfpu=neon which also affects scalar
128 # code. To support dynamic NEON code paths, we need to build all
129 # NEON-specific sources in a separate static library. The situation
130 # is very similar to the SSSE3 one.
131 {
132 'target_name': 'opts_neon',
133 'type': 'static_library',
134 'include_dirs': [
135 '../include/config',
136 '../include/core',
137 '../src/core',
digit@google.comfce02ac2012-08-01 14:25:07 +0000138 '../src/opts',
digit@google.comeec9dbc2012-05-30 13:54:41 +0000139 ],
140 'cflags!': [
141 '-fno-omit-frame-pointer',
142 '-mfpu=vfp', # remove them all, just in case.
143 '-mfpu=vfpv3',
144 '-mfpu=vfpv3-d16',
145 ],
146 'cflags': [
digit@google.comeec9dbc2012-05-30 13:54:41 +0000147 '-mfpu=neon',
digit@google.comfce02ac2012-08-01 14:25:07 +0000148 '-fomit-frame-pointer',
digit@google.comeec9dbc2012-05-30 13:54:41 +0000149 ],
150 'sources': [
151 '../src/opts/memset16_neon.S',
152 '../src/opts/memset32_neon.S',
digit@google.com3ada0ef2012-08-13 14:06:34 +0000153 '../src/opts/SkBitmapProcState_arm_neon.cpp',
digit@google.comfce02ac2012-08-01 14:25:07 +0000154 '../src/opts/SkBitmapProcState_matrixProcs_neon.cpp',
155 '../src/opts/SkBitmapProcState_matrix_clamp_neon.h',
156 '../src/opts/SkBitmapProcState_matrix_repeat_neon.h',
digit@google.coma8dd1ce2012-08-08 22:06:29 +0000157 '../src/opts/SkBlitRow_opts_arm_neon.cpp',
digit@google.comeec9dbc2012-05-30 13:54:41 +0000158 ],
159 },
epoger@google.comae85aea2011-05-31 13:50:51 +0000160 ],
161}
162
163# Local Variables:
164# tab-width:2
165# indent-tabs-mode:nil
166# End:
167# vim: set expandtab tabstop=2 shiftwidth=2: