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

Side by Side Diff: build/common.gypi

Issue 1872813002: Switching iOS to use BoringSSL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ios
Patch Set: Rebasing. Created 4 years, 8 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 ['OS=="mac" or OS=="win" or OS=="linux"', { 258 ['OS=="mac" or OS=="win" or OS=="linux"', {
259 'enable_hidpi%': 1, 259 'enable_hidpi%': 1,
260 }], 260 }],
261 261
262 # Enable Top Chrome Material Design on Chrome OS, Windows, and Linux, 262 # Enable Top Chrome Material Design on Chrome OS, Windows, and Linux,
263 # and Mac. 263 # and Mac.
264 ['chromeos==1 or OS=="win" or OS=="linux" or OS=="mac"', { 264 ['chromeos==1 or OS=="win" or OS=="linux" or OS=="mac"', {
265 'enable_topchrome_md%': 1, 265 'enable_topchrome_md%': 1,
266 }], 266 }],
267 267
268 # On iOS, use NSS rather than OpenSSL. See http://crbug.com/338886.
269 ['OS=="ios"', {
270 'use_openssl%': 0,
271 }],
272
273 # Enable App Launcher everywhere but mobile. 268 # Enable App Launcher everywhere but mobile.
274 ['OS!="ios" and OS!="android"', { 269 ['OS!="ios" and OS!="android"', {
275 'enable_app_list%': 1, 270 'enable_app_list%': 1,
276 }, { 271 }, {
277 'enable_app_list%': 0, 272 'enable_app_list%': 0,
278 }], 273 }],
279 274
280 ['use_aura==1 and OS!="android"', { 275 ['use_aura==1 and OS!="android"', {
281 'use_default_render_theme%': 1, 276 'use_default_render_theme%': 1,
282 }, { 277 }, {
(...skipping 6093 matching lines...) Expand 10 before | Expand all | Expand 10 after
6376 # settings in target dicts. SYMROOT is a special case, because many other 6371 # settings in target dicts. SYMROOT is a special case, because many other
6377 # Xcode variables depend on it, including variables such as 6372 # Xcode variables depend on it, including variables such as
6378 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6373 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6379 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6374 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6380 # files to appear (when present) in the UI as actual files and not red 6375 # files to appear (when present) in the UI as actual files and not red
6381 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6376 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6382 # and therefore SYMROOT, needs to be set at the project level. 6377 # and therefore SYMROOT, needs to be set at the project level.
6383 'SYMROOT': '<(DEPTH)/xcodebuild', 6378 'SYMROOT': '<(DEPTH)/xcodebuild',
6384 }, 6379 },
6385 } 6380 }
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