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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 ['OS=="android"', { | 461 ['OS=="android"', { |
462 'enable_extensions%': 0, | 462 'enable_extensions%': 0, |
463 'enable_printing%': 0, | 463 'enable_printing%': 0, |
464 'enable_themes%': 0, | 464 'enable_themes%': 0, |
465 'enable_webrtc%': 0, | 465 'enable_webrtc%': 0, |
466 'proprietary_codecs%': 1, | 466 'proprietary_codecs%': 1, |
467 'remoting%': 0, | 467 'remoting%': 0, |
468 }], | 468 }], |
469 | 469 |
470 ['OS=="ios"', { | 470 ['OS=="ios"', { |
| 471 'configuration_policy%': 0, |
| 472 'disable_ftp_support%': 1, |
471 'enable_automation%': 0, | 473 'enable_automation%': 0, |
| 474 'enable_extensions%': 0, |
| 475 'enable_printing%': 0, |
| 476 'enable_themes%': 0, |
472 'enable_webrtc%': 0, | 477 'enable_webrtc%': 0, |
473 'disable_ftp_support%': 1, | 478 'notifications%': 0, |
474 'remoting%': 0, | 479 'remoting%': 0, |
475 }], | 480 }], |
476 | 481 |
477 # Use GPU accelerated cross process image transport by default | 482 # Use GPU accelerated cross process image transport by default |
478 # on linux builds with the Aura window manager | 483 # on linux builds with the Aura window manager |
479 ['use_aura==1 and OS=="linux"', { | 484 ['use_aura==1 and OS=="linux"', { |
480 'ui_compositor_image_transport%': 1, | 485 'ui_compositor_image_transport%': 1, |
481 }, { | 486 }, { |
482 'ui_compositor_image_transport%': 0, | 487 'ui_compositor_image_transport%': 0, |
483 }], | 488 }], |
(...skipping 2942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3426 # settings in target dicts. SYMROOT is a special case, because many other | 3431 # settings in target dicts. SYMROOT is a special case, because many other |
3427 # Xcode variables depend on it, including variables such as | 3432 # Xcode variables depend on it, including variables such as |
3428 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3433 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3429 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3434 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3430 # files to appear (when present) in the UI as actual files and not red | 3435 # files to appear (when present) in the UI as actual files and not red |
3431 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3436 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3432 # and therefore SYMROOT, needs to be set at the project level. | 3437 # and therefore SYMROOT, needs to be set at the project level. |
3433 'SYMROOT': '<(DEPTH)/xcodebuild', | 3438 'SYMROOT': '<(DEPTH)/xcodebuild', |
3434 }, | 3439 }, |
3435 } | 3440 } |
OLD | NEW |