| 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 868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 879 # compositor. | 879 # compositor. |
| 880 ['OS!="android"', { | 880 ['OS!="android"', { |
| 881 'use_canvas_skia%': 1, | 881 'use_canvas_skia%': 1, |
| 882 }], | 882 }], |
| 883 | 883 |
| 884 ['chromeos==1', { | 884 ['chromeos==1', { |
| 885 # When building for ChromeOS we dont want Chromium to use libjpeg_turb
o. | 885 # When building for ChromeOS we dont want Chromium to use libjpeg_turb
o. |
| 886 'use_libjpeg_turbo%': 0, | 886 'use_libjpeg_turbo%': 0, |
| 887 }], | 887 }], |
| 888 | 888 |
| 889 ['OS=="android"', { | |
| 890 # When building as part of the Android system, use system libraries | |
| 891 # where possible to reduce ROM size. | |
| 892 'use_system_libjpeg%': '<(android_webview_build)', | |
| 893 }], | |
| 894 | |
| 895 # Do not enable the Settings App on ChromeOS. | 889 # Do not enable the Settings App on ChromeOS. |
| 896 ['enable_app_list==1 and chromeos==0', { | 890 ['enable_app_list==1 and chromeos==0', { |
| 897 'enable_settings_app%': 1, | 891 'enable_settings_app%': 1, |
| 898 }, { | 892 }, { |
| 899 'enable_settings_app%': 0, | 893 'enable_settings_app%': 0, |
| 900 }], | 894 }], |
| 901 | 895 |
| 902 ['OS=="linux" and target_arch=="arm" and chromeos==0', { | 896 ['OS=="linux" and target_arch=="arm" and chromeos==0', { |
| 903 # Set some defaults for arm/linux chrome builds | 897 # Set some defaults for arm/linux chrome builds |
| 904 'use_allocator%': 'none', | 898 'use_allocator%': 'none', |
| (...skipping 4867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5772 # settings in target dicts. SYMROOT is a special case, because many other | 5766 # settings in target dicts. SYMROOT is a special case, because many other |
| 5773 # Xcode variables depend on it, including variables such as | 5767 # Xcode variables depend on it, including variables such as |
| 5774 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5768 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5775 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5769 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5776 # files to appear (when present) in the UI as actual files and not red | 5770 # files to appear (when present) in the UI as actual files and not red |
| 5777 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5771 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5778 # and therefore SYMROOT, needs to be set at the project level. | 5772 # and therefore SYMROOT, needs to be set at the project level. |
| 5779 'SYMROOT': '<(DEPTH)/xcodebuild', | 5773 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5780 }, | 5774 }, |
| 5781 } | 5775 } |
| OLD | NEW |