OLD | NEW |
---|---|
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
45 ], | 45 ], |
46 }], | 46 }], |
47 [ 'OS == "android"', { | 47 [ 'OS == "android"', { |
48 'dependencies': [ | 48 'dependencies': [ |
49 '../build/android/system.gyp:ssl', | 49 '../build/android/system.gyp:ssl', |
50 ], | 50 ], |
51 'sources/': [ | 51 'sources/': [ |
52 ['exclude', 'ec_private_key_nss\.cc$'], | 52 ['exclude', 'ec_private_key_nss\.cc$'], |
53 ], | 53 ], |
54 }], | 54 }], |
55 [ 'OS == "freebsd" or OS == "openbsd"', { | 55 [ 'os_bsd==1', { |
wtc
2011/11/30 01:08:15
Nit: the prevalent style in this file has spaces b
| |
56 'link_settings': { | 56 'link_settings': { |
57 'libraries': [ | 57 'libraries': [ |
58 '-L/usr/local/lib -lexecinfo', | 58 '-L/usr/local/lib -lexecinfo', |
59 ], | 59 ], |
60 }, | 60 }, |
61 }, | 61 }, |
62 ], | 62 ], |
63 [ 'OS == "mac"', { | 63 [ 'OS == "mac"', { |
64 'link_settings': { | 64 'link_settings': { |
65 'libraries': [ | 65 'libraries': [ |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
252 [ 'use_openssl==1', { | 252 [ 'use_openssl==1', { |
253 'sources!': [ | 253 'sources!': [ |
254 'openpgp_symmetric_encryption_unittest.cc', | 254 'openpgp_symmetric_encryption_unittest.cc', |
255 'rsa_private_key_nss_unittest.cc', | 255 'rsa_private_key_nss_unittest.cc', |
256 ], | 256 ], |
257 }], | 257 }], |
258 ], | 258 ], |
259 }, | 259 }, |
260 ], | 260 ], |
261 } | 261 } |
OLD | NEW |