Roll WebRTC 9677:9684, Libjingle 9679:9683
[chromium-blink-merge.git] / third_party / mesa / BUILD.gn
blob62f8611dd959fbfd6c7600574e10e3590617557f
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//build/config/ui.gni")
7 config("mesa_headers_config") {
8   include_dirs = [ "src/include" ]
9   if (use_x11) {
10     defines = [ "MESA_EGL_NO_X11_HEADERS" ]
11   }
14 # This directory contains checked-in files generated from the Mesa build.
15 generated_src_dir = "src/chromium_gensrc"
17 source_set("mesa_headers") {
18   public_configs = [ ":mesa_headers_config" ]
21 # This config must generally be prepended to the configs list so that the Mesa
22 # dirs appear before the system ones on Windows. This is necessary so that
23 # #include "GL/gl.h" means to include Mesa's, not the system's.
24 config("mesa_internal_config") {
25   cflags = []
26   defines = [
27     "MAPI_ABI_HEADER=\"glapi_mapi_tmp_shared.h\"",
28     "PACKAGE_NAME=\"Mesa\"",
29     "PACKAGE_TARNAME=\"mesa\"",
30     "PACKAGE_VERSION=\"9.0.3\"",
31     "PACKAGE_STRING=\"Mesa\ 9.0.3\"",
32     "PACKAGE_BUGREPORT=\"https://bugs.freedesktop.org/enter_bug.cgi\?product=Mesa\"",
33     "PACKAGE_URL=\"\"",
34     "PACKAGE=\"mesa\"",
35     "VERSION=\"9.0.3\"",
36     "STDC_HEADERS=1",
37     "HAVE_SYS_TYPES_H=1",
38     "HAVE_SYS_STAT_H=1",
39     "HAVE_STDLIB_H=1",
40     "HAVE_STRING_H=1",
41     "HAVE_MEMORY_H=1",
42     "HAVE_STRINGS_H=1",
43     "HAVE_INTTYPES_H=1",
44     "HAVE_STDINT_H=1",
45     "HAVE_DLFCN_H=1",
46     "LT_OBJDIR=\".libs/\"",
47     "YYTEXT_POINTER=1",
48     "HAVE_LIBEXPAT=1",
49     "HAVE_LIBXCB_DRI2=1",
50     "FEATURE_GL=1",
51     "MAPI_MODE_GLAPI",
53     #"USE_X86_64_ASM",
54     "IN_DRI_DRIVER",
55     "USE_XCB",
56     "GLX_INDIRECT_RENDERING",
57     "GLX_DIRECT_RENDERING",
58     "USE_EXTERNAL_DXTN_LIB=1",
59     "IN_DRI_DRIVER",
60     "HAVE_ALIAS",
61     "HAVE_MINCORE",
62     "HAVE_LIBUDEV",
63     "_GLAPI_NO_EXPORTS",
64   ]
65   include_dirs = [
66     "src/src/gallium/auxiliary",
67     "src/src/gallium/include",
68     "src/src/glsl",
69     "src/src/glsl/glcpp",
70     "src/src/mapi",
71     "src/src/mapi/glapi",
72     "src/src/mesa",
73     "src/src/mesa/main",
74     "src/include",
75     "$generated_src_dir/mesa/",
76     "$generated_src_dir/mesa/main",
77     "$generated_src_dir/mesa/program",
78     "$generated_src_dir/mesa/glapi",
79   ]
81   if (is_android) {
82     defines += [
83       "__GLIBC__",
84       "_GNU_SOURCE",
85     ]
86   }
88   if (is_linux) {
89     defines += [ "_GNU_SOURCE" ]
90   }
92   if (is_win) {
93     defines += [
94       # Generated files use const only if __cplusplus or __STDC__ is defined.
95       # On Windows, neither is defined, so define YY_USE_CONST to explicitly
96       # enable const.
97       "YY_USE_CONST",
98     ]
99   }
101   if (is_posix) {
102     defines += [
103       "HAVE_DLOPEN",
104       "HAVE_PTHREAD=1",
105       "HAVE_UNISTD_H=1",
106     ]
108     if (!is_android) {
109       defines += [ "HAVE_POSIX_MEMALIGN" ]
110     }
112     if (!is_android && !is_mac) {
113       cflags += [ "-fPIC" ]
114     }
115   }
118 # mesa_internal_config is prepended to the config lists.  Flags that
119 # disable warnings need to be appended instead so that they show up
120 # after flags like -Wall. (gn orders flags on a target before flags from
121 # configs.)
122 config("mesa_internal_warnings") {
123   cflags = []
124   if (is_clang) {
125     cflags += [
126       "-Wno-tautological-constant-out-of-range-compare",
127       "-Wno-mismatched-tags",  # Fixed upstream.
129       # mesa's STATIC_ASSERT() macro expands to an ununused typedef.
130       "-Wno-unused-local-typedef",
131     ]
132   }
133   if (is_win) {
134     # TODO(scottmg): http://crbug.com/143877 These should be removed if
135     # Mesa is ever rolled and the warnings are fixed.
136     cflags += [
137       "/wd4005",  # Macro defined twice.
138       "/wd4018",  # Signed/unsigned mismatch in comparison.
139       "/wd4065",  # Switch statement contains 'default' but no 'case' labels.
140       "/wd4090",  # 'Operation' : different 'modifier' qualifiers
141       "/wd4099",  # Type name struct-vs-class doesn't match.
142       "/wd4273",  # Inconsistent DLL linkage.
143       "/wd4291",  # No matching operator delete found for placement new.
144       "/wd4305",  # Truncation from int to float.
145       "/wd4334",  # Result of 32-bit shift implicitly converted to 64 bits.
146       "/wd4345",  # POD-type default initializers.
147     ]
148   }
151 static_library("mesa_libglslcommon") {
152   sources = [
153     "$generated_src_dir/mesa/glcpp-lex.c",
154     "$generated_src_dir/mesa/glcpp-parse.c",
155     "$generated_src_dir/mesa/glcpp-parse.h",
156     "$generated_src_dir/mesa/glsl_lexer.cc",
157     "$generated_src_dir/mesa/glsl_parser.cc",
158     "$generated_src_dir/mesa/main/dispatch.h",
159     "src/src/glsl/ast_expr.cpp",
160     "src/src/glsl/ast_function.cpp",
161     "src/src/glsl/ast_to_hir.cpp",
162     "src/src/glsl/ast_type.cpp",
163     "src/src/glsl/builtin_variables.cpp",
164     "src/src/glsl/glcpp/glcpp.h",
165     "src/src/glsl/glcpp/pp.c",
166     "src/src/glsl/glsl_parser_extras.cpp",
167     "src/src/glsl/glsl_parser_extras.h",
168     "src/src/glsl/glsl_symbol_table.cpp",
169     "src/src/glsl/glsl_symbol_table.h",
170     "src/src/glsl/glsl_types.cpp",
171     "src/src/glsl/glsl_types.h",
172     "src/src/glsl/hir_field_selection.cpp",
173     "src/src/glsl/ir.cpp",
174     "src/src/glsl/ir.h",
175     "src/src/glsl/ir_basic_block.cpp",
176     "src/src/glsl/ir_basic_block.h",
177     "src/src/glsl/ir_builder.cpp",
178     "src/src/glsl/ir_builder.h",
179     "src/src/glsl/ir_clone.cpp",
180     "src/src/glsl/ir_constant_expression.cpp",
181     "src/src/glsl/ir_expression_flattening.cpp",
182     "src/src/glsl/ir_expression_flattening.h",
183     "src/src/glsl/ir_function.cpp",
184     "src/src/glsl/ir_function_can_inline.cpp",
185     "src/src/glsl/ir_function_detect_recursion.cpp",
186     "src/src/glsl/ir_hierarchical_visitor.cpp",
187     "src/src/glsl/ir_hierarchical_visitor.h",
188     "src/src/glsl/ir_hv_accept.cpp",
189     "src/src/glsl/ir_import_prototypes.cpp",
190     "src/src/glsl/ir_print_visitor.cpp",
191     "src/src/glsl/ir_print_visitor.h",
192     "src/src/glsl/ir_reader.cpp",
193     "src/src/glsl/ir_reader.h",
194     "src/src/glsl/ir_rvalue_visitor.cpp",
195     "src/src/glsl/ir_rvalue_visitor.h",
196     "src/src/glsl/ir_set_program_inouts.cpp",
197     "src/src/glsl/ir_validate.cpp",
198     "src/src/glsl/ir_variable_refcount.cpp",
199     "src/src/glsl/ir_variable_refcount.h",
200     "src/src/glsl/link_functions.cpp",
201     "src/src/glsl/link_uniform_initializers.cpp",
202     "src/src/glsl/link_uniforms.cpp",
203     "src/src/glsl/linker.cpp",
204     "src/src/glsl/linker.h",
205     "src/src/glsl/loop_analysis.cpp",
206     "src/src/glsl/loop_analysis.h",
207     "src/src/glsl/loop_controls.cpp",
208     "src/src/glsl/loop_unroll.cpp",
209     "src/src/glsl/lower_clip_distance.cpp",
210     "src/src/glsl/lower_discard.cpp",
211     "src/src/glsl/lower_discard_flow.cpp",
212     "src/src/glsl/lower_if_to_cond_assign.cpp",
213     "src/src/glsl/lower_instructions.cpp",
214     "src/src/glsl/lower_jumps.cpp",
215     "src/src/glsl/lower_mat_op_to_vec.cpp",
216     "src/src/glsl/lower_noise.cpp",
217     "src/src/glsl/lower_output_reads.cpp",
218     "src/src/glsl/lower_texture_projection.cpp",
219     "src/src/glsl/lower_ubo_reference.cpp",
220     "src/src/glsl/lower_variable_index_to_cond_assign.cpp",
221     "src/src/glsl/lower_vec_index_to_cond_assign.cpp",
222     "src/src/glsl/lower_vec_index_to_swizzle.cpp",
223     "src/src/glsl/lower_vector.cpp",
224     "src/src/glsl/opt_algebraic.cpp",
225     "src/src/glsl/opt_array_splitting.cpp",
226     "src/src/glsl/opt_constant_folding.cpp",
227     "src/src/glsl/opt_constant_propagation.cpp",
228     "src/src/glsl/opt_constant_variable.cpp",
229     "src/src/glsl/opt_copy_propagation.cpp",
230     "src/src/glsl/opt_copy_propagation_elements.cpp",
231     "src/src/glsl/opt_dead_code.cpp",
232     "src/src/glsl/opt_dead_code_local.cpp",
233     "src/src/glsl/opt_dead_functions.cpp",
234     "src/src/glsl/opt_function_inlining.cpp",
235     "src/src/glsl/opt_if_simplification.cpp",
236     "src/src/glsl/opt_noop_swizzle.cpp",
237     "src/src/glsl/opt_redundant_jumps.cpp",
238     "src/src/glsl/opt_structure_splitting.cpp",
239     "src/src/glsl/opt_swizzle_swizzle.cpp",
240     "src/src/glsl/opt_tree_grafting.cpp",
241     "src/src/glsl/program.h",
242     "src/src/glsl/ralloc.c",
243     "src/src/glsl/ralloc.h",
244     "src/src/glsl/s_expression.cpp",
245     "src/src/glsl/s_expression.h",
247     # Skipped in the GN build. This file duplicates symbols from errors.c and
248     # happens to link in GYP due to static library link ordering.
249     #"src/src/glsl/standalone_scaffolding.cpp",
250     #"src/src/glsl/standalone_scaffolding.h",
251     "src/src/glsl/strtod.c",
252     "src/src/glsl/strtod.h",
253   ]
255   configs -= [ "//build/config/compiler:chromium_code" ]
256   configs += [ "//build/config/compiler:no_chromium_code" ]
257   previous_configs = configs
258   configs = []
259   configs = [ ":mesa_internal_config" ] + previous_configs +
260             [ ":mesa_internal_warnings" ]
262   if (is_clang) {
263     # Mesa triggers some of these Clang warnings.
264     configs -= [ "//build/config/clang:extra_warnings" ]
265   }
267   deps = [
268     ":mesa_headers",
269   ]
272 static_library("mesa") {
273   sources = [
274     "$generated_src_dir/mesa/builtin_function.cpp",
275     "$generated_src_dir/mesa/enums.c",
276     "$generated_src_dir/mesa/glapi_mapi_tmp_shared.h",
277     "$generated_src_dir/mesa/lex.yy.c",
278     "$generated_src_dir/mesa/program/program_parse.tab.c",
279     "$generated_src_dir/mesa/program/program_parse.tab.h",
280     "src/src/mapi/mapi/entry.c",
281     "src/src/mapi/mapi/entry.h",
282     "src/src/mapi/mapi/mapi_glapi.c",
283     "src/src/mapi/mapi/stub.c",
284     "src/src/mapi/mapi/stub.h",
285     "src/src/mapi/mapi/table.c",
286     "src/src/mapi/mapi/table.h",
287     "src/src/mapi/mapi/u_current.c",
288     "src/src/mapi/mapi/u_current.h",
289     "src/src/mapi/mapi/u_execmem.c",
290     "src/src/mapi/mapi/u_execmem.h",
291     "src/src/mesa/main/accum.c",
292     "src/src/mesa/main/accum.h",
293     "src/src/mesa/main/api_arrayelt.c",
294     "src/src/mesa/main/api_arrayelt.h",
295     "src/src/mesa/main/api_exec.c",
296     "src/src/mesa/main/api_exec.h",
297     "src/src/mesa/main/api_loopback.c",
298     "src/src/mesa/main/api_loopback.h",
299     "src/src/mesa/main/api_validate.c",
300     "src/src/mesa/main/api_validate.h",
301     "src/src/mesa/main/arbprogram.c",
302     "src/src/mesa/main/arbprogram.h",
303     "src/src/mesa/main/arrayobj.c",
304     "src/src/mesa/main/arrayobj.h",
305     "src/src/mesa/main/atifragshader.c",
306     "src/src/mesa/main/atifragshader.h",
307     "src/src/mesa/main/attrib.c",
308     "src/src/mesa/main/attrib.h",
309     "src/src/mesa/main/blend.c",
310     "src/src/mesa/main/blend.h",
311     "src/src/mesa/main/bufferobj.c",
312     "src/src/mesa/main/bufferobj.h",
313     "src/src/mesa/main/buffers.c",
314     "src/src/mesa/main/buffers.h",
315     "src/src/mesa/main/clear.c",
316     "src/src/mesa/main/clear.h",
317     "src/src/mesa/main/clip.c",
318     "src/src/mesa/main/clip.h",
319     "src/src/mesa/main/colortab.c",
320     "src/src/mesa/main/colortab.h",
321     "src/src/mesa/main/condrender.c",
322     "src/src/mesa/main/condrender.h",
323     "src/src/mesa/main/context.c",
324     "src/src/mesa/main/context.h",
325     "src/src/mesa/main/convolve.c",
326     "src/src/mesa/main/convolve.h",
327     "src/src/mesa/main/cpuinfo.c",
328     "src/src/mesa/main/cpuinfo.h",
329     "src/src/mesa/main/debug.c",
330     "src/src/mesa/main/debug.h",
331     "src/src/mesa/main/depth.c",
332     "src/src/mesa/main/depth.h",
333     "src/src/mesa/main/dlist.c",
334     "src/src/mesa/main/dlist.h",
335     "src/src/mesa/main/drawpix.c",
336     "src/src/mesa/main/drawpix.h",
337     "src/src/mesa/main/drawtex.c",
338     "src/src/mesa/main/drawtex.h",
339     "src/src/mesa/main/enable.c",
340     "src/src/mesa/main/enable.h",
341     "src/src/mesa/main/enums.h",
342     "src/src/mesa/main/errors.c",
343     "src/src/mesa/main/errors.h",
344     "src/src/mesa/main/eval.c",
345     "src/src/mesa/main/eval.h",
346     "src/src/mesa/main/execmem.c",
347     "src/src/mesa/main/extensions.c",
348     "src/src/mesa/main/extensions.h",
349     "src/src/mesa/main/fbobject.c",
350     "src/src/mesa/main/fbobject.h",
351     "src/src/mesa/main/feedback.c",
352     "src/src/mesa/main/feedback.h",
353     "src/src/mesa/main/ff_fragment_shader.cpp",
354     "src/src/mesa/main/ffvertex_prog.c",
355     "src/src/mesa/main/ffvertex_prog.h",
356     "src/src/mesa/main/fog.c",
357     "src/src/mesa/main/fog.h",
358     "src/src/mesa/main/format_pack.c",
359     "src/src/mesa/main/format_pack.h",
360     "src/src/mesa/main/format_unpack.c",
361     "src/src/mesa/main/format_unpack.h",
362     "src/src/mesa/main/formats.c",
363     "src/src/mesa/main/formats.h",
364     "src/src/mesa/main/framebuffer.c",
365     "src/src/mesa/main/framebuffer.h",
366     "src/src/mesa/main/get.c",
367     "src/src/mesa/main/get.h",
368     "src/src/mesa/main/getstring.c",
369     "src/src/mesa/main/glformats.c",
370     "src/src/mesa/main/glformats.h",
371     "src/src/mesa/main/hash.c",
372     "src/src/mesa/main/hash.h",
373     "src/src/mesa/main/hint.c",
374     "src/src/mesa/main/hint.h",
375     "src/src/mesa/main/histogram.c",
376     "src/src/mesa/main/histogram.h",
377     "src/src/mesa/main/image.c",
378     "src/src/mesa/main/image.h",
379     "src/src/mesa/main/imports.c",
380     "src/src/mesa/main/imports.h",
381     "src/src/mesa/main/light.c",
382     "src/src/mesa/main/light.h",
383     "src/src/mesa/main/lines.c",
384     "src/src/mesa/main/lines.h",
385     "src/src/mesa/main/matrix.c",
386     "src/src/mesa/main/matrix.h",
387     "src/src/mesa/main/mipmap.c",
388     "src/src/mesa/main/mipmap.h",
389     "src/src/mesa/main/mm.c",
390     "src/src/mesa/main/mm.h",
391     "src/src/mesa/main/multisample.c",
392     "src/src/mesa/main/multisample.h",
393     "src/src/mesa/main/nvprogram.c",
394     "src/src/mesa/main/nvprogram.h",
395     "src/src/mesa/main/pack.c",
396     "src/src/mesa/main/pack.h",
397     "src/src/mesa/main/pbo.c",
398     "src/src/mesa/main/pbo.h",
399     "src/src/mesa/main/pixel.c",
400     "src/src/mesa/main/pixel.h",
401     "src/src/mesa/main/pixelstore.c",
402     "src/src/mesa/main/pixelstore.h",
403     "src/src/mesa/main/pixeltransfer.c",
404     "src/src/mesa/main/pixeltransfer.h",
405     "src/src/mesa/main/points.c",
406     "src/src/mesa/main/points.h",
407     "src/src/mesa/main/polygon.c",
408     "src/src/mesa/main/polygon.h",
409     "src/src/mesa/main/queryobj.c",
410     "src/src/mesa/main/queryobj.h",
411     "src/src/mesa/main/rastpos.c",
412     "src/src/mesa/main/rastpos.h",
413     "src/src/mesa/main/readpix.c",
414     "src/src/mesa/main/readpix.h",
415     "src/src/mesa/main/remap.c",
416     "src/src/mesa/main/remap.h",
417     "src/src/mesa/main/renderbuffer.c",
418     "src/src/mesa/main/renderbuffer.h",
419     "src/src/mesa/main/samplerobj.c",
420     "src/src/mesa/main/samplerobj.h",
421     "src/src/mesa/main/scissor.c",
422     "src/src/mesa/main/scissor.h",
423     "src/src/mesa/main/shader_query.cpp",
424     "src/src/mesa/main/shaderapi.c",
425     "src/src/mesa/main/shaderapi.h",
426     "src/src/mesa/main/shaderobj.c",
427     "src/src/mesa/main/shaderobj.h",
428     "src/src/mesa/main/shared.c",
429     "src/src/mesa/main/shared.h",
430     "src/src/mesa/main/state.c",
431     "src/src/mesa/main/state.h",
432     "src/src/mesa/main/stencil.c",
433     "src/src/mesa/main/stencil.h",
434     "src/src/mesa/main/syncobj.c",
435     "src/src/mesa/main/syncobj.h",
436     "src/src/mesa/main/texcompress.c",
437     "src/src/mesa/main/texcompress.h",
438     "src/src/mesa/main/texcompress_cpal.c",
439     "src/src/mesa/main/texcompress_cpal.h",
440     "src/src/mesa/main/texcompress_etc.c",
441     "src/src/mesa/main/texcompress_etc.h",
442     "src/src/mesa/main/texcompress_fxt1.c",
443     "src/src/mesa/main/texcompress_fxt1.h",
444     "src/src/mesa/main/texcompress_rgtc.c",
445     "src/src/mesa/main/texcompress_rgtc.h",
446     "src/src/mesa/main/texcompress_s3tc.c",
447     "src/src/mesa/main/texcompress_s3tc.h",
448     "src/src/mesa/main/texenv.c",
449     "src/src/mesa/main/texenv.h",
450     "src/src/mesa/main/texformat.c",
451     "src/src/mesa/main/texformat.h",
452     "src/src/mesa/main/texgen.c",
453     "src/src/mesa/main/texgen.h",
454     "src/src/mesa/main/texgetimage.c",
455     "src/src/mesa/main/texgetimage.h",
456     "src/src/mesa/main/teximage.c",
457     "src/src/mesa/main/teximage.h",
458     "src/src/mesa/main/texobj.c",
459     "src/src/mesa/main/texobj.h",
460     "src/src/mesa/main/texparam.c",
461     "src/src/mesa/main/texparam.h",
462     "src/src/mesa/main/texstate.c",
463     "src/src/mesa/main/texstate.h",
464     "src/src/mesa/main/texstorage.c",
465     "src/src/mesa/main/texstorage.h",
466     "src/src/mesa/main/texstore.c",
467     "src/src/mesa/main/texstore.h",
468     "src/src/mesa/main/texturebarrier.c",
469     "src/src/mesa/main/texturebarrier.h",
470     "src/src/mesa/main/transformfeedback.c",
471     "src/src/mesa/main/transformfeedback.h",
472     "src/src/mesa/main/uniform_query.cpp",
473     "src/src/mesa/main/uniforms.c",
474     "src/src/mesa/main/uniforms.h",
475     "src/src/mesa/main/varray.c",
476     "src/src/mesa/main/varray.h",
477     "src/src/mesa/main/version.c",
478     "src/src/mesa/main/version.h",
479     "src/src/mesa/main/viewport.c",
480     "src/src/mesa/main/viewport.h",
481     "src/src/mesa/main/vtxfmt.c",
482     "src/src/mesa/main/vtxfmt.h",
483     "src/src/mesa/math/m_debug_clip.c",
484     "src/src/mesa/math/m_debug_norm.c",
485     "src/src/mesa/math/m_debug_xform.c",
486     "src/src/mesa/math/m_eval.c",
487     "src/src/mesa/math/m_eval.h",
488     "src/src/mesa/math/m_matrix.c",
489     "src/src/mesa/math/m_matrix.h",
490     "src/src/mesa/math/m_translate.c",
491     "src/src/mesa/math/m_translate.h",
492     "src/src/mesa/math/m_vector.c",
493     "src/src/mesa/math/m_vector.h",
494     "src/src/mesa/math/m_xform.c",
495     "src/src/mesa/math/m_xform.h",
496     "src/src/mesa/program/arbprogparse.c",
497     "src/src/mesa/program/arbprogparse.h",
498     "src/src/mesa/program/hash_table.c",
499     "src/src/mesa/program/hash_table.h",
500     "src/src/mesa/program/ir_to_mesa.cpp",
501     "src/src/mesa/program/ir_to_mesa.h",
502     "src/src/mesa/program/nvfragparse.c",
503     "src/src/mesa/program/nvfragparse.h",
504     "src/src/mesa/program/nvvertparse.c",
505     "src/src/mesa/program/nvvertparse.h",
506     "src/src/mesa/program/prog_cache.c",
507     "src/src/mesa/program/prog_cache.h",
508     "src/src/mesa/program/prog_execute.c",
509     "src/src/mesa/program/prog_execute.h",
510     "src/src/mesa/program/prog_instruction.c",
511     "src/src/mesa/program/prog_instruction.h",
512     "src/src/mesa/program/prog_noise.c",
513     "src/src/mesa/program/prog_noise.h",
514     "src/src/mesa/program/prog_opt_constant_fold.c",
515     "src/src/mesa/program/prog_optimize.c",
516     "src/src/mesa/program/prog_optimize.h",
517     "src/src/mesa/program/prog_parameter.c",
518     "src/src/mesa/program/prog_parameter.h",
519     "src/src/mesa/program/prog_parameter_layout.c",
520     "src/src/mesa/program/prog_parameter_layout.h",
521     "src/src/mesa/program/prog_print.c",
522     "src/src/mesa/program/prog_print.h",
523     "src/src/mesa/program/prog_statevars.c",
524     "src/src/mesa/program/prog_statevars.h",
525     "src/src/mesa/program/program.c",
526     "src/src/mesa/program/program.h",
527     "src/src/mesa/program/program_parse_extra.c",
528     "src/src/mesa/program/programopt.c",
529     "src/src/mesa/program/programopt.h",
530     "src/src/mesa/program/register_allocate.c",
531     "src/src/mesa/program/register_allocate.h",
532     "src/src/mesa/program/sampler.cpp",
533     "src/src/mesa/program/sampler.h",
534     "src/src/mesa/program/string_to_uint_map.cpp",
535     "src/src/mesa/program/symbol_table.c",
536     "src/src/mesa/program/symbol_table.h",
537     "src/src/mesa/swrast/s_aaline.c",
538     "src/src/mesa/swrast/s_aaline.h",
539     "src/src/mesa/swrast/s_aatriangle.c",
540     "src/src/mesa/swrast/s_aatriangle.h",
541     "src/src/mesa/swrast/s_alpha.c",
542     "src/src/mesa/swrast/s_alpha.h",
543     "src/src/mesa/swrast/s_atifragshader.c",
544     "src/src/mesa/swrast/s_atifragshader.h",
545     "src/src/mesa/swrast/s_bitmap.c",
546     "src/src/mesa/swrast/s_blend.c",
547     "src/src/mesa/swrast/s_blend.h",
548     "src/src/mesa/swrast/s_blit.c",
549     "src/src/mesa/swrast/s_clear.c",
550     "src/src/mesa/swrast/s_context.c",
551     "src/src/mesa/swrast/s_context.h",
552     "src/src/mesa/swrast/s_copypix.c",
553     "src/src/mesa/swrast/s_depth.c",
554     "src/src/mesa/swrast/s_depth.h",
555     "src/src/mesa/swrast/s_drawpix.c",
556     "src/src/mesa/swrast/s_feedback.c",
557     "src/src/mesa/swrast/s_feedback.h",
558     "src/src/mesa/swrast/s_fog.c",
559     "src/src/mesa/swrast/s_fog.h",
560     "src/src/mesa/swrast/s_fragprog.c",
561     "src/src/mesa/swrast/s_fragprog.h",
562     "src/src/mesa/swrast/s_lines.c",
563     "src/src/mesa/swrast/s_lines.h",
564     "src/src/mesa/swrast/s_logic.c",
565     "src/src/mesa/swrast/s_logic.h",
566     "src/src/mesa/swrast/s_masking.c",
567     "src/src/mesa/swrast/s_masking.h",
568     "src/src/mesa/swrast/s_points.c",
569     "src/src/mesa/swrast/s_points.h",
570     "src/src/mesa/swrast/s_renderbuffer.c",
571     "src/src/mesa/swrast/s_renderbuffer.h",
572     "src/src/mesa/swrast/s_span.c",
573     "src/src/mesa/swrast/s_span.h",
574     "src/src/mesa/swrast/s_stencil.c",
575     "src/src/mesa/swrast/s_stencil.h",
576     "src/src/mesa/swrast/s_texcombine.c",
577     "src/src/mesa/swrast/s_texcombine.h",
578     "src/src/mesa/swrast/s_texfetch.c",
579     "src/src/mesa/swrast/s_texfetch.h",
580     "src/src/mesa/swrast/s_texfilter.c",
581     "src/src/mesa/swrast/s_texfilter.h",
582     "src/src/mesa/swrast/s_texrender.c",
583     "src/src/mesa/swrast/s_texture.c",
584     "src/src/mesa/swrast/s_triangle.c",
585     "src/src/mesa/swrast/s_triangle.h",
586     "src/src/mesa/swrast/s_zoom.c",
587     "src/src/mesa/swrast/s_zoom.h",
588     "src/src/mesa/swrast_setup/ss_context.c",
589     "src/src/mesa/swrast_setup/ss_context.h",
590     "src/src/mesa/swrast_setup/ss_triangle.c",
591     "src/src/mesa/swrast_setup/ss_triangle.h",
592     "src/src/mesa/tnl/t_context.c",
593     "src/src/mesa/tnl/t_context.h",
594     "src/src/mesa/tnl/t_draw.c",
595     "src/src/mesa/tnl/t_pipeline.c",
596     "src/src/mesa/tnl/t_pipeline.h",
597     "src/src/mesa/tnl/t_rasterpos.c",
598     "src/src/mesa/tnl/t_vb_fog.c",
599     "src/src/mesa/tnl/t_vb_light.c",
600     "src/src/mesa/tnl/t_vb_normals.c",
601     "src/src/mesa/tnl/t_vb_points.c",
602     "src/src/mesa/tnl/t_vb_program.c",
603     "src/src/mesa/tnl/t_vb_render.c",
604     "src/src/mesa/tnl/t_vb_texgen.c",
605     "src/src/mesa/tnl/t_vb_texmat.c",
606     "src/src/mesa/tnl/t_vb_vertex.c",
607     "src/src/mesa/tnl/t_vertex.c",
608     "src/src/mesa/tnl/t_vertex.h",
609     "src/src/mesa/tnl/t_vertex_generic.c",
610     "src/src/mesa/tnl/t_vertex_sse.c",
611     "src/src/mesa/tnl/t_vp_build.c",
612     "src/src/mesa/tnl/t_vp_build.h",
613     "src/src/mesa/vbo/vbo_context.c",
614     "src/src/mesa/vbo/vbo_context.h",
615     "src/src/mesa/vbo/vbo_exec.c",
616     "src/src/mesa/vbo/vbo_exec.h",
617     "src/src/mesa/vbo/vbo_exec_api.c",
618     "src/src/mesa/vbo/vbo_exec_array.c",
619     "src/src/mesa/vbo/vbo_exec_draw.c",
620     "src/src/mesa/vbo/vbo_exec_eval.c",
621     "src/src/mesa/vbo/vbo_noop.c",
622     "src/src/mesa/vbo/vbo_noop.h",
623     "src/src/mesa/vbo/vbo_primitive_restart.c",
624     "src/src/mesa/vbo/vbo_rebase.c",
625     "src/src/mesa/vbo/vbo_save.c",
626     "src/src/mesa/vbo/vbo_save.h",
627     "src/src/mesa/vbo/vbo_save_api.c",
628     "src/src/mesa/vbo/vbo_save_draw.c",
629     "src/src/mesa/vbo/vbo_save_loopback.c",
630     "src/src/mesa/vbo/vbo_split.c",
631     "src/src/mesa/vbo/vbo_split.h",
632     "src/src/mesa/vbo/vbo_split_copy.c",
633     "src/src/mesa/vbo/vbo_split_inplace.c",
634     "src/src/mesa/x86-64/x86-64.c",
635     "src/src/mesa/x86-64/x86-64.h",
636   ]
638   configs -= [ "//build/config/compiler:chromium_code" ]
639   configs += [ "//build/config/compiler:no_chromium_code" ]
640   previous_configs = configs
641   configs = []
642   configs = [ ":mesa_internal_config" ] + previous_configs +
643             [ ":mesa_internal_warnings" ]
645   if (is_clang) {
646     # Mesa triggers some of these Clang warnings.
647     configs -= [ "//build/config/clang:extra_warnings" ]
648   }
650   cflags = []
652   if (is_android && !is_clang) {
653     # Disable sincos() optimization to avoid a linker error
654     # since Android's math library doesn't have sincos().
655     # Either -fno-builtin-sin or -fno-builtin-cos works.
656     cflags += [ "-fno-builtin-sin" ]
657   }
659   if (is_win) {
660     defines = [
661       # Because we're building as a static library
662       "_GLAPI_NO_EXPORTS",
663     ]
664   }
666   deps = [
667     ":mesa_headers",
668   ]
671 if (!is_android) {  # TODO(GYP) enable for Android.
672   # Building this target will hide the native OpenGL shared library and
673   # replace it with a slow software renderer.
674   #
675   # Note: on x64 Windows this target gives warnings to the effect of:
676   #   osmesa.osmesa.obj : warning LNK4197: export 'OSMesaGetIntegerv' specified
677   #   multiple times; using first specification
678   # This also happens with the GYP build.
679   shared_library("osmesa") {
680     sources = [
681       "src/src/mesa/drivers/common/driverfuncs.c",
682       "src/src/mesa/drivers/common/driverfuncs.h",
683       "src/src/mesa/drivers/common/meta.c",
684       "src/src/mesa/drivers/common/meta.h",
685       "src/src/mesa/drivers/osmesa/osmesa.c",
686     ]
688     configs -= [ "//build/config/compiler:chromium_code" ]
689     configs += [
690       ":mesa_headers_config",
691       "//build/config/compiler:no_chromium_code",
692     ]
693     previous_configs = configs
694     configs = []
695     configs = [ ":mesa_internal_config" ] + previous_configs +
696               [ ":mesa_internal_warnings" ]
698     include_dirs = [ "src/src/mesa/drivers" ]
700     if (is_clang) {
701       # Mesa triggers some of these Clang warnings.
702       configs -= [ "//build/config/clang:extra_warnings" ]
703     }
705     if (is_win) {
706       ldflags =
707           [ "/DEF:" + rebase_path("src/src/mesa/drivers/osmesa/osmesa.def",
708                                   root_build_dir) ]
709     }
711     deps = [
712       ":mesa_headers",
713       ":mesa",
714       ":mesa_libglslcommon",
715     ]
717     if (is_win) {
718       defines = [
719         "BUILD_GL32",
720         "KEYWORD1=GLAPI",
721         "KEYWORD2=GLAPIENTRY",
722       ]
723     }
724   }
725 } else {
726   #  Placeholder to allow targets to unconditionally depend on this.
727   group("osmesa") {
728   }
729 }  # !is_android
730 # TODO(GYP) Android osmesa_in_lib_dir target.