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

Side by Side Diff: build/common.gypi

Issue 5625012: Switch linux OpenSSL build to use custom openssl version (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove the system openssl build rule altogether, depend on third party directly Created 10 years 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 | Annotate | Revision Log
« no previous file with comments | « base/base.gypi ('k') | build/linux/system.gyp » ('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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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': { 9 'variables': {
10 # .gyp files or targets should set chromium_code to 1 if they build 10 # .gyp files or targets should set chromium_code to 1 if they build
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 # Enable EGLImage support in OpenMAX 313 # Enable EGLImage support in OpenMAX
314 'enable_eglimage%': 0, 314 'enable_eglimage%': 0,
315 315
316 # Enable a variable used elsewhere throughout the GYP files to determine 316 # Enable a variable used elsewhere throughout the GYP files to determine
317 # whether to compile in the sources for the GPU plugin / process. 317 # whether to compile in the sources for the GPU plugin / process.
318 'enable_gpu%': 1, 318 'enable_gpu%': 1,
319 319
320 # Use GConf, the GNOME configuration system. 320 # Use GConf, the GNOME configuration system.
321 'use_gconf%': 1, 321 'use_gconf%': 1,
322 322
323 # Use OpenSSL instead of NSS. Currently in development. 323 # Use OpenSSL instead of NSS. Under development: see http://crbug.com/62803
324 'use_openssl%': 0, 324 'use_openssl%': 0,
325 325
326 'conditions': [ 326 'conditions': [
327 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 327 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
328 # This will set gcc_version to XY if you are running gcc X.Y.*. 328 # This will set gcc_version to XY if you are running gcc X.Y.*.
329 # This is used to tweak build flags for gcc 4.4. 329 # This is used to tweak build flags for gcc 4.4.
330 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', 330 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
331 # Figure out the python architecture to decide if we build pyauto. 331 # Figure out the python architecture to decide if we build pyauto.
332 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l ib/libpython<(python_ver).so.1.0)', 332 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l ib/libpython<(python_ver).so.1.0)',
333 'conditions': [ 333 'conditions': [
(...skipping 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after
1470 # and therefore SYMROOT, needs to be set at the project level. 1470 # and therefore SYMROOT, needs to be set at the project level.
1471 'SYMROOT': '<(DEPTH)/xcodebuild', 1471 'SYMROOT': '<(DEPTH)/xcodebuild',
1472 }, 1472 },
1473 } 1473 }
1474 1474
1475 # Local Variables: 1475 # Local Variables:
1476 # tab-width:2 1476 # tab-width:2
1477 # indent-tabs-mode:nil 1477 # indent-tabs-mode:nil
1478 # End: 1478 # End:
1479 # vim: set expandtab tabstop=2 shiftwidth=2: 1479 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | build/linux/system.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698