Chromium Code Reviews| 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 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1246 'video_hole%': '<(video_hole)', | 1246 'video_hole%': '<(video_hole)', |
| 1247 'v8_use_external_startup_data%': '<(v8_use_external_startup_data)', | 1247 'v8_use_external_startup_data%': '<(v8_use_external_startup_data)', |
| 1248 'cfi_vptr%': '<(cfi_vptr)', | 1248 'cfi_vptr%': '<(cfi_vptr)', |
| 1249 'cfi_diag%': '<(cfi_diag)', | 1249 'cfi_diag%': '<(cfi_diag)', |
| 1250 'cfi_blacklist%': '<(cfi_blacklist)', | 1250 'cfi_blacklist%': '<(cfi_blacklist)', |
| 1251 'mac_views_browser%': '<(mac_views_browser)', | 1251 'mac_views_browser%': '<(mac_views_browser)', |
| 1252 'android_app_version_name%': '<(android_app_version_name)', | 1252 'android_app_version_name%': '<(android_app_version_name)', |
| 1253 'android_app_version_code%': '<(android_app_version_code)', | 1253 'android_app_version_code%': '<(android_app_version_code)', |
| 1254 'enable_webvr%': '<(enable_webvr)', | 1254 'enable_webvr%': '<(enable_webvr)', |
| 1255 | 1255 |
| 1256 # Enable this to build OpenH264. | |
| 1257 # CHECK THE OPENH264 LICENSE BEFORE BUILDING. | |
| 1258 'build_openh264%': 1, | |
|
torbjorng
2015/11/05 13:18:24
Should this be default on considering the comment
hbos_chromium
2015/11/10 14:36:47
I will not land this until the default is off. I s
| |
| 1259 | |
| 1256 # Turns on compiler optimizations in V8 in Debug build. | 1260 # Turns on compiler optimizations in V8 in Debug build. |
| 1257 'v8_optimized_debug%': 1, | 1261 'v8_optimized_debug%': 1, |
| 1258 | 1262 |
| 1259 # Use system protobuf instead of bundled one. | 1263 # Use system protobuf instead of bundled one. |
| 1260 'use_system_protobuf%': 0, | 1264 'use_system_protobuf%': 0, |
| 1261 | 1265 |
| 1262 # Use system yasm instead of bundled one. | 1266 # Use system yasm instead of bundled one. |
| 1263 'use_system_yasm%': 0, | 1267 'use_system_yasm%': 0, |
| 1264 | 1268 |
| 1265 # Use system ICU instead of bundled one. | 1269 # Use system ICU instead of bundled one. |
| (...skipping 5054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 6320 # settings in target dicts. SYMROOT is a special case, because many other | 6324 # settings in target dicts. SYMROOT is a special case, because many other |
| 6321 # Xcode variables depend on it, including variables such as | 6325 # Xcode variables depend on it, including variables such as |
| 6322 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6326 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6323 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6327 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6324 # files to appear (when present) in the UI as actual files and not red | 6328 # files to appear (when present) in the UI as actual files and not red |
| 6325 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6329 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6326 # and therefore SYMROOT, needs to be set at the project level. | 6330 # and therefore SYMROOT, needs to be set at the project level. |
| 6327 'SYMROOT': '<(DEPTH)/xcodebuild', | 6331 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6328 }, | 6332 }, |
| 6329 } | 6333 } |
| OLD | NEW |