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

Side by Side Diff: third_party/mesa/mesa.gyp

Issue 1743004: Windows OSMesa DLL only exports OSMesa functions.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « third_party/mesa/README.chromium ('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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 }, 7 },
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'mesa', 10 'target_name': 'mesa',
11 'type': 'static_library', 11 'type': 'static_library',
12 'include_dirs': [ 12 'include_dirs': [
13 'MesaLib/include', 13 'MesaLib/include',
14 'MesaLib/src/mesa', 14 'MesaLib/src/mesa',
15 ], 15 ],
16 'defines': [
17 'BUILD_GL32',
18 ],
19 'sources': [ 16 'sources': [
20 'MesaLib/src/mesa/main/accum.c', 17 'MesaLib/src/mesa/main/accum.c',
21 'MesaLib/src/mesa/main/api_arrayelt.c', 18 'MesaLib/src/mesa/main/api_arrayelt.c',
22 'MesaLib/src/mesa/main/api_exec.c', 19 'MesaLib/src/mesa/main/api_exec.c',
23 'MesaLib/src/mesa/main/api_loopback.c', 20 'MesaLib/src/mesa/main/api_loopback.c',
24 'MesaLib/src/mesa/main/api_noop.c', 21 'MesaLib/src/mesa/main/api_noop.c',
25 'MesaLib/src/mesa/main/api_validate.c', 22 'MesaLib/src/mesa/main/api_validate.c',
26 'MesaLib/src/mesa/shader/arbprogparse.c', 23 'MesaLib/src/mesa/shader/arbprogparse.c',
27 'MesaLib/src/mesa/shader/arbprogram.c', 24 'MesaLib/src/mesa/shader/arbprogram.c',
28 'MesaLib/src/mesa/main/arrayobj.c', 25 'MesaLib/src/mesa/main/arrayobj.c',
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 'target_name': 'osmesa', 426 'target_name': 'osmesa',
430 'type': 'shared_library', 427 'type': 'shared_library',
431 'dependencies': [ 428 'dependencies': [
432 'mesa', 429 'mesa',
433 ], 430 ],
434 'include_dirs': [ 431 'include_dirs': [
435 'MesaLib/include', 432 'MesaLib/include',
436 'MesaLib/src/mesa', 433 'MesaLib/src/mesa',
437 'MesaLib/src/mesa/drivers', 434 'MesaLib/src/mesa/drivers',
438 ], 435 ],
439 'defines': [
440 'BUILD_GL32',
441 ],
442 'sources': [ 436 'sources': [
443 'MesaLib/src/mesa/drivers/common/driverfuncs.c', 437 'MesaLib/src/mesa/drivers/common/driverfuncs.c',
444 'MesaLib/src/mesa/drivers/common/driverfuncs.h', 438 'MesaLib/src/mesa/drivers/common/driverfuncs.h',
445 'MesaLib/src/mesa/drivers/common/meta.c', 439 'MesaLib/src/mesa/drivers/common/meta.c',
446 'MesaLib/src/mesa/drivers/common/meta.h', 440 'MesaLib/src/mesa/drivers/common/meta.h',
447 'MesaLib/src/mesa/drivers/osmesa/osmesa.c', 441 'MesaLib/src/mesa/drivers/osmesa/osmesa.c',
442 'MesaLib/src/mesa/drivers/osmesa/osmesa.def',
Ken Russell (switch to Gerrit) 2010/04/22 23:17:51 Will this be filtered out on non-Windows platforms
apatrick_chromium 2010/04/22 23:19:42 I believe it will be ignored on other platforms in
448 ], 443 ],
449 }, 444 },
450 ], 445 ],
451 } 446 }
OLDNEW
« no previous file with comments | « third_party/mesa/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698