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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
266 'enable_web_intents_tag%': 0, | 266 'enable_web_intents_tag%': 0, |
267 | 267 |
268 # Webrtc compilation is enabled by default. Set to 0 to disable. | 268 # Webrtc compilation is enabled by default. Set to 0 to disable. |
269 'enable_webrtc%': 1, | 269 'enable_webrtc%': 1, |
270 | 270 |
271 # PPAPI by default does not support plugins making calls off the main | 271 # PPAPI by default does not support plugins making calls off the main |
272 # thread. Set to 1 to turn on experimental support for out-of-process | 272 # thread. Set to 1 to turn on experimental support for out-of-process |
273 # plugins to make call of the main thread. | 273 # plugins to make call of the main thread. |
274 'enable_pepper_threading%': 0, | 274 'enable_pepper_threading%': 0, |
275 | 275 |
276 # Include the PPAPI IPC proxy for NaCl. This is a work-in-progress; this | |
brettw
2012/07/23 19:42:51
It's not clear to me why you deleted this.
bbudge
2012/07/23 19:53:40
To get gpu code to build, we need a compile time f
| |
277 # allows us to build this feature locally without it affecting others | |
278 # working in affected subsystems like base and ipc. | |
279 'build_ppapi_ipc_proxy_untrusted%': 0, | |
280 | |
281 # Enables use of the session service, which is enabled by default. | 276 # Enables use of the session service, which is enabled by default. |
282 # Support for disabling depends on the platform. | 277 # Support for disabling depends on the platform. |
283 'enable_session_service%': 1, | 278 'enable_session_service%': 1, |
284 | 279 |
285 # Enables theme support, which is enabled by default. Support for | 280 # Enables theme support, which is enabled by default. Support for |
286 # disabling depends on the platform. | 281 # disabling depends on the platform. |
287 'enable_themes%': 1, | 282 'enable_themes%': 1, |
288 | 283 |
289 # Enables support for background apps. | 284 # Enables support for background apps. |
290 'enable_background%': 1, | 285 'enable_background%': 1, |
(...skipping 3018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3309 # settings in target dicts. SYMROOT is a special case, because many other | 3304 # settings in target dicts. SYMROOT is a special case, because many other |
3310 # Xcode variables depend on it, including variables such as | 3305 # Xcode variables depend on it, including variables such as |
3311 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3306 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3312 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3307 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3313 # files to appear (when present) in the UI as actual files and not red | 3308 # files to appear (when present) in the UI as actual files and not red |
3314 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3309 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3315 # and therefore SYMROOT, needs to be set at the project level. | 3310 # and therefore SYMROOT, needs to be set at the project level. |
3316 'SYMROOT': '<(DEPTH)/xcodebuild', | 3311 'SYMROOT': '<(DEPTH)/xcodebuild', |
3317 }, | 3312 }, |
3318 } | 3313 } |
OLD | NEW |