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

Side by Side Diff: build/linux/system.gyp

Issue 1480002: GYP changes for FreeBSD and OpenBSD (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['sysroot!=""', { 7 ['sysroot!=""', {
8 'variables': { 8 'variables': {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)"',
10 }, 10 },
11 }, { 11 }, {
12 'variables': { 12 'variables': {
13 'pkg-config': 'pkg-config' 13 'pkg-config': 'pkg-config'
14 }, 14 },
15 }], 15 }],
16 [ 'OS=="linux"', { 16 [ 'OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
17 'variables': { 17 'variables': {
18 # We use our own copy of libssl, although we still need to link against 18 # We use our own copy of libssl, although we still need to link against
19 # the rest of NSS. 19 # the rest of NSS.
20 'use_system_ssl%': 0, 20 'use_system_ssl%': 0,
21 }, 21 },
22 }, { # OS!="linux" 22 }, { # OS!="linux"
23 'variables': { 23 'variables': {
24 'use_system_ssl%': 1, 24 'use_system_ssl%': 1,
25 }, 25 },
26 }], 26 }],
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 }, 292 },
293 }, 293 },
294 ], 294 ],
295 } 295 }
296 296
297 # Local Variables: 297 # Local Variables:
298 # tab-width:2 298 # tab-width:2
299 # indent-tabs-mode:nil 299 # indent-tabs-mode:nil
300 # End: 300 # End:
301 # vim: set expandtab tabstop=2 shiftwidth=2: 301 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | chrome/common_constants.gypi » ('j') | third_party/zlib/zlib.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698