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 # IMPORTANT: | 5 # IMPORTANT: |
6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
8 { | 8 { |
9 'variables': { | 9 'variables': { |
10 # .gyp files or targets should set chromium_code to 1 if they build | 10 # .gyp files or targets should set chromium_code to 1 if they build |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 # Enable new NPDevice API. | 307 # Enable new NPDevice API. |
308 'enable_new_npdevice_api%': 0, | 308 'enable_new_npdevice_api%': 0, |
309 | 309 |
310 # Enable EGLImage support in OpenMAX | 310 # Enable EGLImage support in OpenMAX |
311 'enable_eglimage%': 0, | 311 'enable_eglimage%': 0, |
312 | 312 |
313 # Enable a variable used elsewhere throughout the GYP files to determine | 313 # Enable a variable used elsewhere throughout the GYP files to determine |
314 # whether to compile in the sources for the GPU plugin / process. | 314 # whether to compile in the sources for the GPU plugin / process. |
315 'enable_gpu%': 1, | 315 'enable_gpu%': 1, |
316 | 316 |
| 317 # Use GConf, the GNOME configuration system. |
| 318 'use_gconf%': 1, |
| 319 |
317 # Use OpenSSL instead of NSS. Currently in development. | 320 # Use OpenSSL instead of NSS. Currently in development. |
318 'use_openssl%': 0, | 321 'use_openssl%': 0, |
319 | 322 |
320 'conditions': [ | 323 'conditions': [ |
321 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 324 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
322 # This will set gcc_version to XY if you are running gcc X.Y.*. | 325 # This will set gcc_version to XY if you are running gcc X.Y.*. |
323 # This is used to tweak build flags for gcc 4.4. | 326 # This is used to tweak build flags for gcc 4.4. |
324 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', | 327 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', |
325 # Figure out the python architecture to decide if we build pyauto. | 328 # Figure out the python architecture to decide if we build pyauto. |
326 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', | 329 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', |
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1518 # and therefore SYMROOT, needs to be set at the project level. | 1521 # and therefore SYMROOT, needs to be set at the project level. |
1519 'SYMROOT': '<(DEPTH)/xcodebuild', | 1522 'SYMROOT': '<(DEPTH)/xcodebuild', |
1520 }, | 1523 }, |
1521 } | 1524 } |
1522 | 1525 |
1523 # Local Variables: | 1526 # Local Variables: |
1524 # tab-width:2 | 1527 # tab-width:2 |
1525 # indent-tabs-mode:nil | 1528 # indent-tabs-mode:nil |
1526 # End: | 1529 # End: |
1527 # vim: set expandtab tabstop=2 shiftwidth=2: | 1530 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |