| 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 # Enable Web Intents web content registration via HTML element | 295 # Enable Web Intents web content registration via HTML element |
| 296 # and WebUI managing such registrations. | 296 # and WebUI managing such registrations. |
| 297 'enable_web_intents_tag%': 0, | 297 'enable_web_intents_tag%': 0, |
| 298 | 298 |
| 299 # Webrtc compilation is enabled by default. Set to 0 to disable. | 299 # Webrtc compilation is enabled by default. Set to 0 to disable. |
| 300 'enable_webrtc%': 1, | 300 'enable_webrtc%': 1, |
| 301 | 301 |
| 302 # PPAPI by default does not support plugins making calls off the main | 302 # PPAPI by default does not support plugins making calls off the main |
| 303 # thread. Set to 1 to turn on experimental support for out-of-process | 303 # thread. Set to 1 to turn on experimental support for out-of-process |
| 304 # plugins to make call of the main thread. | 304 # plugins to make call of the main thread. |
| 305 'enable_pepper_threading%': 0, | 305 'enable_pepper_threading%': 1, |
| 306 | 306 |
| 307 # Enables use of the session service, which is enabled by default. | 307 # Enables use of the session service, which is enabled by default. |
| 308 # Support for disabling depends on the platform. | 308 # Support for disabling depends on the platform. |
| 309 'enable_session_service%': 1, | 309 'enable_session_service%': 1, |
| 310 | 310 |
| 311 # Enables theme support, which is enabled by default. Support for | 311 # Enables theme support, which is enabled by default. Support for |
| 312 # disabling depends on the platform. | 312 # disabling depends on the platform. |
| 313 'enable_themes%': 1, | 313 'enable_themes%': 1, |
| 314 | 314 |
| 315 # Uses OEM-specific wallpaper resources on Chrome OS. | 315 # Uses OEM-specific wallpaper resources on Chrome OS. |
| (...skipping 3369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3685 # settings in target dicts. SYMROOT is a special case, because many other | 3685 # settings in target dicts. SYMROOT is a special case, because many other |
| 3686 # Xcode variables depend on it, including variables such as | 3686 # Xcode variables depend on it, including variables such as |
| 3687 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3687 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3688 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3688 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3689 # files to appear (when present) in the UI as actual files and not red | 3689 # files to appear (when present) in the UI as actual files and not red |
| 3690 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3690 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3691 # and therefore SYMROOT, needs to be set at the project level. | 3691 # and therefore SYMROOT, needs to be set at the project level. |
| 3692 'SYMROOT': '<(DEPTH)/xcodebuild', | 3692 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3693 }, | 3693 }, |
| 3694 } | 3694 } |
| OLD | NEW |