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

Side by Side Diff: build/common.gypi

Issue 1210073014: Switch Linux and CrOS to BoringSSL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: better comment, try jobs on PS7 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, Chrome OS, Windows and Linux. 228 # Enable HiDPI on Mac OS, Chrome OS, Windows and Linux.
229 ['OS=="mac" or chromeos==1 or OS=="win" or OS=="linux"', { 229 ['OS=="mac" or chromeos==1 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 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after
1798 1798
1799 # Location of the "readelf" binary. 1799 # Location of the "readelf" binary.
1800 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)', 1800 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)',
1801 1801
1802 # Determines whether we should optimize JNI generation at the cost of 1802 # Determines whether we should optimize JNI generation at the cost of
1803 # breaking assumptions in the build system that when inputs have changed 1803 # breaking assumptions in the build system that when inputs have changed
1804 # the outputs should always change as well. This is meant purely for 1804 # the outputs should always change as well. This is meant purely for
1805 # developer builds, to avoid spurious re-linking of native files. 1805 # developer builds, to avoid spurious re-linking of native files.
1806 'optimize_jni_generation%': '<(optimize_jni_generation)', 1806 'optimize_jni_generation%': '<(optimize_jni_generation)',
1807 1807
1808 # Always uses openssl. 1808 # Use OpenSSL's struct X509 to represent certificates.
1809 'use_openssl%': 1,
1810 'use_openssl_certs%': 1, 1809 'use_openssl_certs%': 1,
1811 1810
1812 'proprietary_codecs%': '<(proprietary_codecs)', 1811 'proprietary_codecs%': '<(proprietary_codecs)',
1813 'safe_browsing%': 2, 1812 'safe_browsing%': 2,
1814 'enable_web_speech%': 0, 1813 'enable_web_speech%': 0,
1815 'java_bridge%': 1, 1814 'java_bridge%': 1,
1816 'build_ffmpegsumo%': 0, 1815 'build_ffmpegsumo%': 0,
1817 'use_allocator%': 'none', 1816 'use_allocator%': 'none',
1818 1817
1819 # Disable Native Client. 1818 # Disable Native Client.
(...skipping 4395 matching lines...) Expand 10 before | Expand all | Expand 10 after
6215 # settings in target dicts. SYMROOT is a special case, because many other 6214 # settings in target dicts. SYMROOT is a special case, because many other
6216 # Xcode variables depend on it, including variables such as 6215 # Xcode variables depend on it, including variables such as
6217 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6216 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6218 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6217 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6219 # files to appear (when present) in the UI as actual files and not red 6218 # files to appear (when present) in the UI as actual files and not red
6220 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6219 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6221 # and therefore SYMROOT, needs to be set at the project level. 6220 # and therefore SYMROOT, needs to be set at the project level.
6222 'SYMROOT': '<(DEPTH)/xcodebuild', 6221 'SYMROOT': '<(DEPTH)/xcodebuild',
6223 }, 6222 },
6224 } 6223 }
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