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 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1284 # Force disable libstdc++ debug mode. | 1284 # Force disable libstdc++ debug mode. |
1285 'disable_glibcxx_debug%': 0, | 1285 'disable_glibcxx_debug%': 0, |
1286 | 1286 |
1287 # Set to 1 to compile with the hole punching for the protected video. | 1287 # Set to 1 to compile with the hole punching for the protected video. |
1288 'video_hole%': 0, | 1288 'video_hole%': 0, |
1289 | 1289 |
1290 # Enable a new Gamepad interface. This is temporary and should go | 1290 # Enable a new Gamepad interface. This is temporary and should go |
1291 # away once the chrome and blink interfaces are in sync | 1291 # away once the chrome and blink interfaces are in sync |
1292 'enable_new_gamepad_api%': 1, | 1292 'enable_new_gamepad_api%': 1, |
1293 | 1293 |
| 1294 # Support ChromeOS touchpad gestures with ozone. |
| 1295 'use_evdev_gestures%': 0, |
| 1296 |
1294 'conditions': [ | 1297 'conditions': [ |
1295 # The version of GCC in use, set later in platforms that use GCC and have | 1298 # The version of GCC in use, set later in platforms that use GCC and have |
1296 # not explicitly chosen to build with clang. Currently, this means all | 1299 # not explicitly chosen to build with clang. Currently, this means all |
1297 # platforms except Windows, Mac and iOS. | 1300 # platforms except Windows, Mac and iOS. |
1298 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that | 1301 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that |
1299 # it takes effect here. | 1302 # it takes effect here. |
1300 ['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsa
n==0 and tsan==0 and msan==0', { | 1303 ['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsa
n==0 and tsan==0 and msan==0', { |
1301 'conditions': [ | 1304 'conditions': [ |
1302 ['OS=="android"', { | 1305 ['OS=="android"', { |
1303 # We directly set the gcc_version since we know what we use. | 1306 # We directly set the gcc_version since we know what we use. |
(...skipping 3748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5052 # settings in target dicts. SYMROOT is a special case, because many other | 5055 # settings in target dicts. SYMROOT is a special case, because many other |
5053 # Xcode variables depend on it, including variables such as | 5056 # Xcode variables depend on it, including variables such as |
5054 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5057 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5055 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5058 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5056 # files to appear (when present) in the UI as actual files and not red | 5059 # files to appear (when present) in the UI as actual files and not red |
5057 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5060 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5058 # and therefore SYMROOT, needs to be set at the project level. | 5061 # and therefore SYMROOT, needs to be set at the project level. |
5059 'SYMROOT': '<(DEPTH)/xcodebuild', | 5062 'SYMROOT': '<(DEPTH)/xcodebuild', |
5060 }, | 5063 }, |
5061 } | 5064 } |
OLD | NEW |