| 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 14 matching lines...) Expand all Loading... |
| 25 'chromeos%': 0, | 25 'chromeos%': 0, |
| 26 | 26 |
| 27 # Whether we are using Views Toolkit | 27 # Whether we are using Views Toolkit |
| 28 'toolkit_views%': 0, | 28 'toolkit_views%': 0, |
| 29 | 29 |
| 30 # Whether the compositor is enabled on views. | 30 # Whether the compositor is enabled on views. |
| 31 'views_compositor%': 0, | 31 'views_compositor%': 0, |
| 32 | 32 |
| 33 # Whether or not we are using the Aura windowing framework. | 33 # Whether or not we are using the Aura windowing framework. |
| 34 'use_aura%': 0, | 34 'use_aura%': 0, |
| 35 | 35 |
| 36 # Whether or not we are building the Ash shell. | 36 # Whether or not we are building the Ash shell. |
| 37 'use_ash%': 0, | 37 'use_ash%': 0, |
| 38 | 38 |
| 39 # Use OpenSSL instead of NSS. Under development: see http://crbug.com/
62803 | 39 # Use OpenSSL instead of NSS. Under development: see http://crbug.com/
62803 |
| 40 'use_openssl%': 0, | 40 'use_openssl%': 0, |
| 41 | 41 |
| 42 # Disable Virtual keyboard support by default. | 42 # Disable Virtual keyboard support by default. |
| 43 'use_virtual_keyboard%': 0, | 43 'use_virtual_keyboard%': 0, |
| 44 | 44 |
| 45 # Default setting for use_skia on mac platform. | 45 # Default setting for use_skia on mac platform. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 65 'conditions': [ | 65 'conditions': [ |
| 66 [ 'OS=="win" or OS=="mac"', { | 66 [ 'OS=="win" or OS=="mac"', { |
| 67 'host_arch%': 'ia32', | 67 'host_arch%': 'ia32', |
| 68 }, { | 68 }, { |
| 69 # This handles the Unix platforms for which there is some support. | 69 # This handles the Unix platforms for which there is some support. |
| 70 # Anything else gets passed through, which probably won't work very | 70 # Anything else gets passed through, which probably won't work very |
| 71 # well; such hosts should pass an explicit target_arch to gyp. | 71 # well; such hosts should pass an explicit target_arch to gyp. |
| 72 'host_arch%': | 72 'host_arch%': |
| 73 '<!(uname -m | sed -e "s/i.86/ia32/;s/x86_64/x64/;s/amd64/x64/;s/a
rm.*/arm/;s/i86pc/ia32/")', | 73 '<!(uname -m | sed -e "s/i.86/ia32/;s/x86_64/x64/;s/amd64/x64/;s/a
rm.*/arm/;s/i86pc/ia32/")', |
| 74 }], | 74 }], |
| 75 | 75 |
| 76 # Ash requires Aura. | 76 # Ash requires Aura. |
| 77 ['use_ash==1', { | 77 ['use_ash==1', { |
| 78 'use_aura%': 1, | 78 'use_aura%': 1, |
| 79 }], | 79 }], |
| 80 | 80 |
| 81 # show aura-window-mode about flag by default. | 81 # show aura-window-mode about flag by default. |
| 82 ['use_aura==1', { | 82 ['use_aura==1', { |
| 83 'aura_show_about_flag_window_mode': 1, | 83 'aura_show_about_flag_window_mode': 1, |
| 84 }], | 84 }], |
| 85 | 85 |
| (...skipping 2720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2806 # settings in target dicts. SYMROOT is a special case, because many other | 2806 # settings in target dicts. SYMROOT is a special case, because many other |
| 2807 # Xcode variables depend on it, including variables such as | 2807 # Xcode variables depend on it, including variables such as |
| 2808 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2808 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 2809 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2809 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 2810 # files to appear (when present) in the UI as actual files and not red | 2810 # files to appear (when present) in the UI as actual files and not red |
| 2811 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2811 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 2812 # and therefore SYMROOT, needs to be set at the project level. | 2812 # and therefore SYMROOT, needs to be set at the project level. |
| 2813 'SYMROOT': '<(DEPTH)/xcodebuild', | 2813 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 2814 }, | 2814 }, |
| 2815 } | 2815 } |
| OLD | NEW |