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 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1335 | 1335 |
1336 # Force disable libstdc++ debug mode. | 1336 # Force disable libstdc++ debug mode. |
1337 'disable_glibcxx_debug%': 0, | 1337 'disable_glibcxx_debug%': 0, |
1338 | 1338 |
1339 # Set to 1 to compile with the hole punching for the protected video. | 1339 # Set to 1 to compile with the hole punching for the protected video. |
1340 'video_hole%': 0, | 1340 'video_hole%': 0, |
1341 | 1341 |
1342 # Set to 1 to compile with MSE support for MPEG2 TS | 1342 # Set to 1 to compile with MSE support for MPEG2 TS |
1343 'enable_mpeg2ts_stream_parser%': 0, | 1343 'enable_mpeg2ts_stream_parser%': 0, |
1344 | 1344 |
| 1345 # Support ChromeOS touchpad gestures with ozone. |
| 1346 'use_evdev_gestures%': 0, |
| 1347 |
1345 'conditions': [ | 1348 'conditions': [ |
1346 # Enable the Syzygy optimization step for the official builds. | 1349 # Enable the Syzygy optimization step for the official builds. |
1347 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { | 1350 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { |
1348 'syzygy_optimize%': 1, | 1351 'syzygy_optimize%': 1, |
1349 }, { | 1352 }, { |
1350 'syzygy_optimize%': 0, | 1353 'syzygy_optimize%': 0, |
1351 }], | 1354 }], |
1352 # Get binutils version so we can enable debug fission if we can. | 1355 # Get binutils version so we can enable debug fission if we can. |
1353 ['os_posix==1 and OS!="mac" and OS!="ios"', { | 1356 ['os_posix==1 and OS!="mac" and OS!="ios"', { |
1354 'conditions': [ | 1357 'conditions': [ |
(...skipping 3885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5240 # settings in target dicts. SYMROOT is a special case, because many other | 5243 # settings in target dicts. SYMROOT is a special case, because many other |
5241 # Xcode variables depend on it, including variables such as | 5244 # Xcode variables depend on it, including variables such as |
5242 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5245 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5243 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5246 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5244 # files to appear (when present) in the UI as actual files and not red | 5247 # files to appear (when present) in the UI as actual files and not red |
5245 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5248 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5246 # and therefore SYMROOT, needs to be set at the project level. | 5249 # and therefore SYMROOT, needs to be set at the project level. |
5247 'SYMROOT': '<(DEPTH)/xcodebuild', | 5250 'SYMROOT': '<(DEPTH)/xcodebuild', |
5248 }, | 5251 }, |
5249 } | 5252 } |
OLD | NEW |