| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
| 10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
| (...skipping 1398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1409 'release_unwind_tables%': 1, | 1409 'release_unwind_tables%': 1, |
| 1410 | 1410 |
| 1411 # Override where to find binutils | 1411 # Override where to find binutils |
| 1412 'binutils_version%': 0, | 1412 'binutils_version%': 0, |
| 1413 'binutils_dir%': '', | 1413 'binutils_dir%': '', |
| 1414 | 1414 |
| 1415 # Enable TCMalloc. | 1415 # Enable TCMalloc. |
| 1416 # Default of 'use_allocator' is set to 'none' if OS=='android' later. | 1416 # Default of 'use_allocator' is set to 'none' if OS=='android' later. |
| 1417 'use_allocator%': 'tcmalloc', | 1417 'use_allocator%': 'tcmalloc', |
| 1418 | 1418 |
| 1419 # Set to 1 to link against libgnome-keyring instead of using dlopen(). | |
| 1420 'linux_link_gnome_keyring%': 0, | |
| 1421 # Set to 1 to link against gsettings APIs instead of using dlopen(). | 1419 # Set to 1 to link against gsettings APIs instead of using dlopen(). |
| 1422 'linux_link_gsettings%': 0, | 1420 'linux_link_gsettings%': 0, |
| 1423 | 1421 |
| 1424 # Enable use of OpenMAX DL FFT routines. | 1422 # Enable use of OpenMAX DL FFT routines. |
| 1425 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)', | 1423 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)', |
| 1426 | 1424 |
| 1427 # Enable new NPDevice API. | 1425 # Enable new NPDevice API. |
| 1428 'enable_new_npdevice_api%': 0, | 1426 'enable_new_npdevice_api%': 0, |
| 1429 | 1427 |
| 1430 # .gyp files or targets should set chromium_code to 1 if they build | 1428 # .gyp files or targets should set chromium_code to 1 if they build |
| (...skipping 4906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6337 # settings in target dicts. SYMROOT is a special case, because many other | 6335 # settings in target dicts. SYMROOT is a special case, because many other |
| 6338 # Xcode variables depend on it, including variables such as | 6336 # Xcode variables depend on it, including variables such as |
| 6339 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6337 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6340 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6338 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6341 # files to appear (when present) in the UI as actual files and not red | 6339 # files to appear (when present) in the UI as actual files and not red |
| 6342 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6340 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6343 # and therefore SYMROOT, needs to be set at the project level. | 6341 # and therefore SYMROOT, needs to be set at the project level. |
| 6344 'SYMROOT': '<(DEPTH)/xcodebuild', | 6342 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6345 }, | 6343 }, |
| 6346 } | 6344 } |
| OLD | NEW |