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

Side by Side Diff: build/common.gypi

Issue 3495005: Prototype OpenSSL client socket implementation. (Closed)
Patch Set: agl comments no. 2 Created 10 years, 2 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/linux/system.gyp » ('j') | build/linux/system.gyp » ('J')
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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 # Enable new NPDevice API. 303 # Enable new NPDevice API.
304 'enable_new_npdevice_api%': 0, 304 'enable_new_npdevice_api%': 0,
305 305
306 # Enable EGLImage support in OpenMAX 306 # Enable EGLImage support in OpenMAX
307 'enable_eglimage%': 0, 307 'enable_eglimage%': 0,
308 308
309 # Enable a variable used elsewhere throughout the GYP files to determine 309 # Enable a variable used elsewhere throughout the GYP files to determine
310 # whether to compile in the sources for the GPU plugin / process. 310 # whether to compile in the sources for the GPU plugin / process.
311 'enable_gpu%': 1, 311 'enable_gpu%': 1,
312 312
313 # Use OpenSSL instead of NSS. Currently in developement.
314 'use_openssl%': 0,
315
313 'conditions': [ 316 'conditions': [
314 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 317 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
315 # This will set gcc_version to XY if you are running gcc X.Y.*. 318 # This will set gcc_version to XY if you are running gcc X.Y.*.
316 # This is used to tweak build flags for gcc 4.4. 319 # This is used to tweak build flags for gcc 4.4.
317 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', 320 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
318 # Figure out the python architecture to decide if we build pyauto. 321 # Figure out the python architecture to decide if we build pyauto.
319 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l ib/libpython<(python_ver).so.1.0)', 322 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/l ib/libpython<(python_ver).so.1.0)',
320 'conditions': [ 323 'conditions': [
321 ['branding=="Chrome"', { 324 ['branding=="Chrome"', {
322 'linux_breakpad%': 1, 325 'linux_breakpad%': 1,
(...skipping 1163 matching lines...) Expand 10 before | Expand all | Expand 10 after
1486 # and therefore SYMROOT, needs to be set at the project level. 1489 # and therefore SYMROOT, needs to be set at the project level.
1487 'SYMROOT': '<(DEPTH)/xcodebuild', 1490 'SYMROOT': '<(DEPTH)/xcodebuild',
1488 }, 1491 },
1489 } 1492 }
1490 1493
1491 # Local Variables: 1494 # Local Variables:
1492 # tab-width:2 1495 # tab-width:2
1493 # indent-tabs-mode:nil 1496 # indent-tabs-mode:nil
1494 # End: 1497 # End:
1495 # vim: set expandtab tabstop=2 shiftwidth=2: 1498 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | build/linux/system.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698