We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8500514 commit 5f461cdCopy full SHA for 5f461cd
brightray/brightray.gyp
@@ -164,16 +164,23 @@
164
],
165
},
166
}],
167
+ # This lib does not exist on arm.
168
['target_arch=="arm"', {
169
'link_settings': {
- 'libraries': [
170
- '<(libchromiumcontent_dir)/libjpeg.a',
171
- ],
172
'libraries!': [
173
'<(libchromiumcontent_dir)/libdesktop_capture_differ_sse2.a',
174
175
176
+ # Due to strange linker behavior, component build of arm needs to
+ # be linked with libjpeg.a explicitly.
177
+ ['target_arch=="arm" and libchromiumcontent_component==1', {
178
+ 'link_settings': {
179
+ 'libraries': [
180
+ '<(libchromiumcontent_dir)/libjpeg.a',
181
+ ],
182
+ },
183
+ }],
184
185
}], # OS=="linux"
186
['OS=="mac"', {
0 commit comments