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 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 'socket/ssl_client_socket_openssl.cc', | 715 'socket/ssl_client_socket_openssl.cc', |
716 'socket/ssl_client_socket_openssl.h', | 716 'socket/ssl_client_socket_openssl.h', |
717 'socket/ssl_server_socket_openssl.cc', | 717 'socket/ssl_server_socket_openssl.cc', |
718 ], | 718 ], |
719 }, | 719 }, |
720 ], | 720 ], |
721 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { | 721 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { |
722 'dependencies': [ | 722 'dependencies': [ |
723 '../build/linux/system.gyp:gconf', | 723 '../build/linux/system.gyp:gconf', |
724 '../build/linux/system.gyp:gdk', | 724 '../build/linux/system.gyp:gdk', |
| 725 '../build/linux/system.gyp:gio', |
725 '../build/linux/system.gyp:libresolv', | 726 '../build/linux/system.gyp:libresolv', |
726 ], | 727 ], |
727 'conditions': [ | 728 'conditions': [ |
728 ['use_openssl==1', { | 729 ['use_openssl==1', { |
729 'dependencies': [ | 730 'dependencies': [ |
730 '../third_party/openssl/openssl.gyp:openssl', | 731 '../third_party/openssl/openssl.gyp:openssl', |
731 ], | 732 ], |
732 }, | 733 }, |
733 { # else use_openssl==0, use NSS | 734 { # else use_openssl==0, use NSS |
734 'dependencies': [ | 735 'dependencies': [ |
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1364 ], | 1365 ], |
1365 }], | 1366 }], |
1366 ], | 1367 ], |
1367 } | 1368 } |
1368 | 1369 |
1369 # Local Variables: | 1370 # Local Variables: |
1370 # tab-width:2 | 1371 # tab-width:2 |
1371 # indent-tabs-mode:nil | 1372 # indent-tabs-mode:nil |
1372 # End: | 1373 # End: |
1373 # vim: set expandtab tabstop=2 shiftwidth=2: | 1374 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |