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

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

Issue 7706011: Use precompiled headers for most large projects. (Closed) Base URL: ssh://joi@192.168.1.201/home/joi/c/chrome/src@master
Patch Set: Created 9 years, 4 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
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 'target_defaults': { 8 'target_defaults': {
9 'conditions': [ 9 'conditions': [
10 ['OS!="win"', { 10 ['OS!="win"', {
(...skipping 16 matching lines...) Expand all
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698