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

Side by Side Diff: build/common.gypi

Issue 7108010: Upstream ChromeOS patch on O3D. (Change Icf3bc91d: http://gerrit.chromium.org/gerrit/#change,2220) (Closed) Base URL: svn://chrome-svn/chrome/trunk/o3d/
Patch Set: '' Created 9 years, 6 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 | « no previous file | build/libs.gyp » ('j') | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'antlrdir': 'third_party/antlr3', 7 'antlrdir': 'third_party/antlr3',
8 'breakpaddir': 'breakpad/src', 8 'breakpaddir': 'breakpad/src',
9 'cairodir': 'third_party/cairo', 9 'cairodir': 'third_party/cairo',
10 'fcolladadir': 'third_party/fcollada/files', 10 'fcolladadir': 'third_party/fcollada/files',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'o3d_developer%': '<!(python <(DEPTH)/o3d/build/file_exists.py ' 73 'o3d_developer%': '<!(python <(DEPTH)/o3d/build/file_exists.py '
74 '<(DEPTH)/o3d/o3d_assets/samples/convert_assets/teapot.zip )', 74 '<(DEPTH)/o3d/o3d_assets/samples/convert_assets/teapot.zip )',
75 'selenium_screenshots%': 0, 75 'selenium_screenshots%': 0,
76 76
77 # Add a way to disable FBO support for GL implementations that don't have 77 # Add a way to disable FBO support for GL implementations that don't have
78 # it. 78 # it.
79 'disable_fbo%': 0, 79 'disable_fbo%': 0,
80 80
81 # Whether to enable the English-only, Win/Mac-only fullscreen message. 81 # Whether to enable the English-only, Win/Mac-only fullscreen message.
82 'plugin_enable_fullscreen_msg%': '1', 82 'plugin_enable_fullscreen_msg%': '1',
83
84 'conditions': [
85 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', {
Tristan Schmelcher 2 2011/06/07 23:39:47 No leading space before the ' that starts the stri
zhurunz1 2011/06/07 23:58:54 Done.
86 'conditions': [
87 ['sysroot!=""', {
88 'variables': {
89 'pkg-config%': '<(DEPTH)/o3d/build/linux/pkg-config-wrapper "<(sys root)"',
90 },
91 }, {
92 'variables': {
93 'pkg-config%': 'pkg-config'
94 },
95 }],
96 ],
97 }],
98 ],
83 }, 99 },
84 'target_defaults': { 100 'target_defaults': {
85 'defines': [ 101 'defines': [
86 'GYP_BUILD', # Needed to make a change in base/types.h conditional. 102 'GYP_BUILD', # Needed to make a change in base/types.h conditional.
87 ], 103 ],
88 # This needs to be in a target_conditions block in order to successfully 104 # This needs to be in a target_conditions block in order to successfully
89 # override the xcode_settings in ../../build/common.gypi. 105 # override the xcode_settings in ../../build/common.gypi.
90 # Something to do with evaluation order. 106 # Something to do with evaluation order.
91 'target_conditions': [ 107 'target_conditions': [
92 ['OS=="mac"', { 108 ['OS=="mac"', {
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 # We always want debugging information, even for release builds. It 271 # We always want debugging information, even for release builds. It
256 # is stripped by the packager into the -dbgsym package, so it 272 # is stripped by the packager into the -dbgsym package, so it
257 # doesn't affect what we ship. 273 # doesn't affect what we ship.
258 '-g', 274 '-g',
259 ], 275 ],
260 }, 276 },
261 }, 277 },
262 ], 278 ],
263 ], 279 ],
264 } 280 }
OLDNEW
« no previous file with comments | « no previous file | build/libs.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698