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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 # Enable EGLImage support in OpenMAX | 313 # Enable EGLImage support in OpenMAX |
314 'enable_eglimage%': 0, | 314 'enable_eglimage%': 0, |
315 | 315 |
316 # Enable a variable used elsewhere throughout the GYP files to determine | 316 # Enable a variable used elsewhere throughout the GYP files to determine |
317 # whether to compile in the sources for the GPU plugin / process. | 317 # whether to compile in the sources for the GPU plugin / process. |
318 'enable_gpu%': 1, | 318 'enable_gpu%': 1, |
319 | 319 |
320 # Use GConf, the GNOME configuration system. | 320 # Use GConf, the GNOME configuration system. |
321 'use_gconf%': 1, | 321 'use_gconf%': 1, |
322 | 322 |
323 # Use OpenSSL instead of NSS. Currently in development. | 323 # Use OpenSSL instead of NSS. Under development: see http://crbug.com/62803 |
324 'use_openssl%': 0, | 324 'use_openssl%': 0, |
325 | 325 |
326 'conditions': [ | 326 'conditions': [ |
327 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 327 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
328 # This will set gcc_version to XY if you are running gcc X.Y.*. | 328 # This will set gcc_version to XY if you are running gcc X.Y.*. |
329 # This is used to tweak build flags for gcc 4.4. | 329 # This is used to tweak build flags for gcc 4.4. |
330 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', | 330 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', |
331 # Figure out the python architecture to decide if we build pyauto. | 331 # Figure out the python architecture to decide if we build pyauto. |
332 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', | 332 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l
ib/libpython<(python_ver).so.1.0)', |
333 'conditions': [ | 333 'conditions': [ |
(...skipping 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1470 # and therefore SYMROOT, needs to be set at the project level. | 1470 # and therefore SYMROOT, needs to be set at the project level. |
1471 'SYMROOT': '<(DEPTH)/xcodebuild', | 1471 'SYMROOT': '<(DEPTH)/xcodebuild', |
1472 }, | 1472 }, |
1473 } | 1473 } |
1474 | 1474 |
1475 # Local Variables: | 1475 # Local Variables: |
1476 # tab-width:2 | 1476 # tab-width:2 |
1477 # indent-tabs-mode:nil | 1477 # indent-tabs-mode:nil |
1478 # End: | 1478 # End: |
1479 # vim: set expandtab tabstop=2 shiftwidth=2: | 1479 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |