Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Side by Side Diff: third_party/mesa/mesa_gensrc.gypi

Issue 612523002: Roll mesa 457812d9:9731cb9 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: BUILD.gn and mesa_gensrc.gypi changes Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/mesa/mesa.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'xmlfiles': [ 7 'xmlfiles': [
8 'src/src/mapi/glapi/gen/EXT_draw_buffers2.xml', 8 'src/src/mapi/glapi/gen/EXT_draw_buffers2.xml',
9 'src/src/mapi/glapi/gen/NV_texture_barrier.xml', 9 'src/src/mapi/glapi/gen/NV_texture_barrier.xml',
10 'src/src/mapi/glapi/gen/NV_primitive_restart.xml', 10 'src/src/mapi/glapi/gen/NV_primitive_restart.xml',
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 'src/src/mapi/glapi/gen/glX_proto_size.py', 578 'src/src/mapi/glapi/gen/glX_proto_size.py',
579 '-f', 579 '-f',
580 'src/src/mapi/glapi/gen/gl_API.xml', 580 'src/src/mapi/glapi/gen/gl_API.xml',
581 '-m', 581 '-m',
582 'size_c', 582 'size_c',
583 '--only-set', 583 '--only-set',
584 ], 584 ],
585 'message': "Generating indirect_size.c ...", 585 'message': "Generating indirect_size.c ...",
586 }, 586 },
587 { 587 {
588 'action_name': 'api_exec_es1_c',
589 'inputs': [
590 '<@(xmlfiles)',
591 'redirectoutput.py',
592 'src/src/mesa/main/es_generator.py',
593 ],
594 'outputs': [
595 '<(generated_src_dir)/mesa/api_exec_es1.c',
596 ],
597 'action': [
598 'python',
599 'redirectoutput.py',
600 '<(generated_src_dir)/mesa/api_exec_es1.c',
601 'src/src/mesa/main/es_generator.py',
602 '-S',
603 'src/src/mesa/main/APIspec.xml',
604 '-V',
605 'GLES1.1',
606 ],
607 'message': "Generating api_exec_es1.c ...",
608 },
609 {
610 'action_name': 'git_sha1_h', 588 'action_name': 'git_sha1_h',
611 'inputs': [ 589 'inputs': [
612 ], 590 ],
613 'outputs': [ 591 'outputs': [
614 '<(generated_src_dir)/mesa/git_sha1.h', 592 '<(generated_src_dir)/mesa/git_sha1.h',
615 ], 593 ],
616 'action': [ 594 'action': [
617 'python', 595 'python',
618 'generate_git_sha1.py', 596 'generate_git_sha1.py',
619 '<(generated_src_dir)/mesa/git_sha1.h', 597 '<(generated_src_dir)/mesa/git_sha1.h',
620 ], 598 ],
621 'message': "Generating Mesa sources ...", 599 'message': "Generating Mesa sources ...",
622 }, 600 },
623 ], 601 ],
624 }, 602 },
625 ], 603 ],
626 } 604 }
OLDNEW
« no previous file with comments | « third_party/mesa/mesa.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698