| OLD | NEW |
| 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 'fcolladadir': 'third_party/fcollada/files', | 9 'fcolladadir': 'third_party/fcollada/files', |
| 10 'glewdir': 'third_party/glew/files', | 10 'glewdir': 'third_party/glew/files', |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 'MOZ_X11', | 202 'MOZ_X11', |
| 203 'NACL_LINUX=1', | 203 'NACL_LINUX=1', |
| 204 'OS_LINUX', | 204 'OS_LINUX', |
| 205 'SK_BUILD_FOR_UNIX', | 205 'SK_BUILD_FOR_UNIX', |
| 206 'UNICODE', | 206 'UNICODE', |
| 207 'XP_UNIX', | 207 'XP_UNIX', |
| 208 ], | 208 ], |
| 209 'cflags': [ | 209 'cflags': [ |
| 210 '-fvisibility=hidden', | 210 '-fvisibility=hidden', |
| 211 '-Wstrict-aliasing', | 211 '-Wstrict-aliasing', |
| 212 # We always want debugging information, even for release builds. It |
| 213 # is stripped by the packager into the -dbgsym package, so it |
| 214 # doesn't affect what we ship. |
| 215 '-g', |
| 212 ], | 216 ], |
| 213 }, | 217 }, |
| 214 }, | 218 }, |
| 215 ], | 219 ], |
| 216 ], | 220 ], |
| 217 } | 221 } |
| OLD | NEW |