OLD | NEW |
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 'target_defaults': { | 8 'target_defaults': { |
9 'conditions': [ | 9 'conditions': [ |
10 ['OS!="win"', { | 10 ['OS!="win"', { |
(...skipping 16 matching lines...) Expand all Loading... |
27 ], | 27 ], |
28 'defines': [ | 28 'defines': [ |
29 # For Mesa | 29 # For Mesa |
30 'MAPI_GLAPI_CURRENT', | 30 'MAPI_GLAPI_CURRENT', |
31 ], | 31 ], |
32 }, | 32 }, |
33 'targets': [ | 33 'targets': [ |
34 { | 34 { |
35 'target_name': 'mesa', | 35 'target_name': 'mesa', |
36 'type': 'static_library', | 36 'type': 'static_library', |
| 37 'msvs_disable_precompiled_header': '1', |
37 'include_dirs': [ | 38 'include_dirs': [ |
38 '../talloc', | 39 '../talloc', |
39 'MesaLib/include', | 40 'MesaLib/include', |
40 'MesaLib/src/glsl', | 41 'MesaLib/src/glsl', |
41 'MesaLib/src/mapi', | 42 'MesaLib/src/mapi', |
42 'MesaLib/src/mesa', | 43 'MesaLib/src/mesa', |
43 'MesaLib/src/mesa/main', | 44 'MesaLib/src/mesa/main', |
44 ], | 45 ], |
45 'sources': [ | 46 'sources': [ |
46 '../talloc/talloc.c', | 47 '../talloc/talloc.c', |
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 'MesaLib/src/mesa/drivers/common/driverfuncs.c', | 546 'MesaLib/src/mesa/drivers/common/driverfuncs.c', |
546 'MesaLib/src/mesa/drivers/common/driverfuncs.h', | 547 'MesaLib/src/mesa/drivers/common/driverfuncs.h', |
547 'MesaLib/src/mesa/drivers/common/meta.c', | 548 'MesaLib/src/mesa/drivers/common/meta.c', |
548 'MesaLib/src/mesa/drivers/common/meta.h', | 549 'MesaLib/src/mesa/drivers/common/meta.h', |
549 'MesaLib/src/mesa/drivers/osmesa/osmesa.c', | 550 'MesaLib/src/mesa/drivers/osmesa/osmesa.c', |
550 'MesaLib/src/mesa/drivers/osmesa/osmesa.def', | 551 'MesaLib/src/mesa/drivers/osmesa/osmesa.def', |
551 ], | 552 ], |
552 }, | 553 }, |
553 ], | 554 ], |
554 } | 555 } |
OLD | NEW |