Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: build/common.gypi

Issue 1231723003: Switch Linux and CrOS to BoringSSL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/config/crypto.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 # Whether we are using Views Toolkit 61 # Whether we are using Views Toolkit
62 'toolkit_views%': 0, 62 'toolkit_views%': 0,
63 63
64 # Use the PCI lib to collect GPU information. 64 # Use the PCI lib to collect GPU information.
65 'use_libpci%': 1, 65 'use_libpci%': 1,
66 66
67 # Use OpenSSL instead of NSS as the underlying SSL and crypto 67 # Use OpenSSL instead of NSS as the underlying SSL and crypto
68 # implementation. Certificate verification will in most cases be 68 # implementation. Certificate verification will in most cases be
69 # handled by the OS. If OpenSSL's struct X509 is used to represent 69 # handled by the OS. If OpenSSL's struct X509 is used to represent
70 # certificates, use_openssl_certs must be set. 70 # certificates, use_openssl_certs must be set.
71 'use_openssl%': 0, 71 'use_openssl%': 1,
72 72
73 # Use OpenSSL for representing certificates. When targeting Android, 73 # Use OpenSSL for representing certificates. When targeting Android,
74 # the platform certificate library is used for certificate 74 # the platform certificate library is used for certificate
75 # verification. On other targets, this flag also enables OpenSSL for 75 # verification. On other targets, this flag also enables OpenSSL for
76 # certificate verification, but this configuration is unsupported. 76 # certificate verification, but this configuration is unsupported.
77 'use_openssl_certs%': 0, 77 'use_openssl_certs%': 0,
78 78
79 # Disable viewport meta tag by default. 79 # Disable viewport meta tag by default.
80 'enable_viewport%': 0, 80 'enable_viewport%': 0,
81 81
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 # Enable HiDPI on Mac OS, Windows and Linux (including Chrome OS). 228 # Enable HiDPI on Mac OS, Windows and Linux (including Chrome OS).
229 ['OS=="mac" or OS=="win" or OS=="linux"', { 229 ['OS=="mac" or OS=="win" or OS=="linux"', {
230 'enable_hidpi%': 1, 230 'enable_hidpi%': 1,
231 }], 231 }],
232 232
233 # Enable Top Chrome Material Design on Chrome OS, Windows, and Linux. 233 # Enable Top Chrome Material Design on Chrome OS, Windows, and Linux.
234 ['chromeos==1 or OS=="win" or OS=="linux"', { 234 ['chromeos==1 or OS=="win" or OS=="linux"', {
235 'enable_topchrome_md%': 1, 235 'enable_topchrome_md%': 1,
236 }], 236 }],
237 237
238 # Enable the OpenSSL backend on Mac OS and Windows. 238 # On iOS, use NSS rather than OpenSSL. See http://crbug.com/338886.
239 ['OS=="mac" or OS=="win"', { 239 ['OS=="ios"', {
240 'use_openssl%': 1, 240 'use_openssl%': 0,
241 }], 241 }],
242 242
243 # Enable App Launcher everywhere but mobile. 243 # Enable App Launcher everywhere but mobile.
244 ['OS!="ios" and OS!="android"', { 244 ['OS!="ios" and OS!="android"', {
245 'enable_app_list%': 1, 245 'enable_app_list%': 1,
246 }, { 246 }, {
247 'enable_app_list%': 0, 247 'enable_app_list%': 0,
248 }], 248 }],
249 249
250 ['use_aura==1 and OS!="android"', { 250 ['use_aura==1 and OS!="android"', {
(...skipping 1546 matching lines...) Expand 10 before | Expand all | Expand 10 after
1797 1797
1798 # Location of the "readelf" binary. 1798 # Location of the "readelf" binary.
1799 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)', 1799 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)',
1800 1800
1801 # Determines whether we should optimize JNI generation at the cost of 1801 # Determines whether we should optimize JNI generation at the cost of
1802 # breaking assumptions in the build system that when inputs have changed 1802 # breaking assumptions in the build system that when inputs have changed
1803 # the outputs should always change as well. This is meant purely for 1803 # the outputs should always change as well. This is meant purely for
1804 # developer builds, to avoid spurious re-linking of native files. 1804 # developer builds, to avoid spurious re-linking of native files.
1805 'optimize_jni_generation%': '<(optimize_jni_generation)', 1805 'optimize_jni_generation%': '<(optimize_jni_generation)',
1806 1806
1807 # Always uses openssl. 1807 # Use OpenSSL's struct X509 to represent certificates.
1808 'use_openssl%': 1,
1809 'use_openssl_certs%': 1, 1808 'use_openssl_certs%': 1,
1810 1809
1811 'proprietary_codecs%': '<(proprietary_codecs)', 1810 'proprietary_codecs%': '<(proprietary_codecs)',
1812 'safe_browsing%': 2, 1811 'safe_browsing%': 2,
1813 'enable_web_speech%': 0, 1812 'enable_web_speech%': 0,
1814 'java_bridge%': 1, 1813 'java_bridge%': 1,
1815 'build_ffmpegsumo%': 0, 1814 'build_ffmpegsumo%': 0,
1816 'use_allocator%': 'none', 1815 'use_allocator%': 'none',
1817 1816
1818 # Disable Native Client. 1817 # Disable Native Client.
(...skipping 4385 matching lines...) Expand 10 before | Expand all | Expand 10 after
6204 # settings in target dicts. SYMROOT is a special case, because many other 6203 # settings in target dicts. SYMROOT is a special case, because many other
6205 # Xcode variables depend on it, including variables such as 6204 # Xcode variables depend on it, including variables such as
6206 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6205 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6207 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6206 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6208 # files to appear (when present) in the UI as actual files and not red 6207 # files to appear (when present) in the UI as actual files and not red
6209 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6208 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6210 # and therefore SYMROOT, needs to be set at the project level. 6209 # and therefore SYMROOT, needs to be set at the project level.
6211 'SYMROOT': '<(DEPTH)/xcodebuild', 6210 'SYMROOT': '<(DEPTH)/xcodebuild',
6212 }, 6211 },
6213 } 6212 }
OLDNEW
« no previous file with comments | « no previous file | build/config/crypto.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698