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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 'enable_extensions%': 0, | 583 'enable_extensions%': 0, |
584 'enable_google_now%': 0, | 584 'enable_google_now%': 0, |
585 'cld_version%': 1, | 585 'cld_version%': 1, |
586 'enable_spellcheck%': 0, | 586 'enable_spellcheck%': 0, |
587 'enable_themes%': 0, | 587 'enable_themes%': 0, |
588 'remoting%': 0, | 588 'remoting%': 0, |
589 'arm_neon%': 0, | 589 'arm_neon%': 0, |
590 'arm_neon_optional%': 1, | 590 'arm_neon_optional%': 1, |
591 'native_discardable_memory%': 1, | 591 'native_discardable_memory%': 1, |
592 'native_memory_pressure_signals%': 1, | 592 'native_memory_pressure_signals%': 1, |
593 }], | |
594 | |
595 # Enable basic printing for Chrome for Android but disable printing | |
596 # completely for WebView. | |
597 ['OS=="android" and android_webview_build==0', { | |
598 'enable_printing%': 2, | 593 'enable_printing%': 2, |
599 }], | 594 }], |
600 ['OS=="android" and android_webview_build==1', { | |
601 'enable_printing%': 0, | |
602 }], | |
603 | 595 |
604 # Android OS includes support for proprietary codecs regardless of | 596 # Android OS includes support for proprietary codecs regardless of |
605 # building Chromium or Google Chrome. We also ship Google Chrome with | 597 # building Chromium or Google Chrome. We also ship Google Chrome with |
606 # proprietary codecs. | 598 # proprietary codecs. |
607 ['OS=="android" or branding=="Chrome"', { | 599 ['OS=="android" or branding=="Chrome"', { |
608 'proprietary_codecs%': 1, | 600 'proprietary_codecs%': 1, |
609 }, { | 601 }, { |
610 'proprietary_codecs%': 0, | 602 'proprietary_codecs%': 0, |
611 }], | 603 }], |
612 | 604 |
(...skipping 4133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4746 # settings in target dicts. SYMROOT is a special case, because many other | 4738 # settings in target dicts. SYMROOT is a special case, because many other |
4747 # Xcode variables depend on it, including variables such as | 4739 # Xcode variables depend on it, including variables such as |
4748 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4740 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4749 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4741 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4750 # files to appear (when present) in the UI as actual files and not red | 4742 # files to appear (when present) in the UI as actual files and not red |
4751 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4743 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4752 # and therefore SYMROOT, needs to be set at the project level. | 4744 # and therefore SYMROOT, needs to be set at the project level. |
4753 'SYMROOT': '<(DEPTH)/xcodebuild', | 4745 'SYMROOT': '<(DEPTH)/xcodebuild', |
4754 }, | 4746 }, |
4755 } | 4747 } |
OLD | NEW |