1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# Copyright (c) 2009 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'includes': [
'../../build/common.gypi',
],
'variables': {
'antlrdir': 'third_party/antlr3',
'breakpaddir': 'breakpad/src',
'fcolladadir': 'third_party/fcollada/files',
'glewdir': 'third_party/glew/files',
'gtestdir': 'testing/gtest/include',
'jpegdir': 'third_party/libjpeg',
'nacldir': 'third_party/native_client/googleclient',
'nixysadir': 'third_party/nixysa',
'npapidir': 'third_party/npapi',
'pdiffdir': 'third_party/pdiff/files',
'pngdir': 'third_party/libpng',
'screenshotsdir': 'o3d_assets/tests/screenshots',
'seleniumdir': 'third_party/selenium_rc/files',
'skiadir': 'third_party/skia/include',
'zlibdir': 'third_party/zlib',
'o3d_in_chrome%': 0,
'selenium_screenshots%': 0,
},
'target_defaults': {
'defines': [
'GYP_BUILD', # Needed to make a change in base/types.h conditional.
],
# This needs to be in a target_conditions block in order to successfully
# override the xcode_settings in ../../build/common.gypi.
# Something to do with evaluation order.
'target_conditions': [
['OS=="mac"', {
'xcode_settings': {
'MACOSX_DEPLOYMENT_TARGET': '10.4',
},
}],
],
},
'conditions' : [
['OS == "win"',
{
'variables': {
'renderer': 'd3d9',
'cgdir': 'third_party/cg/files/win',
'swiftshaderdir': 'o3d-internal/third_party/swiftshader/files',
'LIBRARY_SUFFIX': '.lib',
},
'target_defaults': {
'defines': [
'_CRT_SECURE_NO_WARNINGS',
'RENDERER_D3D9',
'OS_WIN',
'UNICODE',
'NACL_WINDOWS',
],
# Disable warning: "'this' : used in base member initialization list."
'msvs_disabled_warnings': [4355],
},
},
],
['OS == "mac"',
{
'variables': {
'renderer': 'gl',
'cgdir': 'third_party/cg/files/mac',
'LIBRARY_SUFFIX': '.a',
},
'target_defaults': {
'defines': [
'RENDERER_GL',
'OS_MACOSX',
'UNICODE',
'GTEST_NOT_MAC_FRAMEWORK_MODE',
'NACL_OSX=1',
'MAC_OS_X_VERSION_MIN_REQUIRED=MAC_OS_X_VERSION_10_4',
'SK_BUILD_FOR_MAC',
],
'configurations': {
'Debug': {
'xcode_settings': {
# 'OTHER_CFLAGS': ['-ggdb', '-g',],
'GCC_DEBUGGING_SYMBOLS': 'full',
'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
},
},
},
'xcode_settings': {
'OTHER_CFLAGS': [
'-fno-eliminate-unused-debug-symbols',
'-mmacosx-version-min=10.4'],
'WARNING_CFLAGS': ['-Wno-deprecated-declarations'],
'WARNING_CXXFLAGS': ['-Wstrict-aliasing',
'-Wno-deprecated',],
},
},
},
],
['OS == "linux"',
{
'variables': {
'renderer': 'gl',
'cgdir': 'third_party/cg/files/linux',
'LIBRARY_SUFFIX': '.a',
},
'target_defaults': {
'defines': [
'LINUX',
'MOZ_X11',
'NACL_LINUX=1',
'OS_LINUX',
'RENDERER_GL',
'SK_BUILD_FOR_UNIX',
'UNICODE',
'XP_UNIX',
],
'cflags': [
'-fvisibility=hidden',
'-Wstrict-aliasing',
],
},
},
],
],
}
|