OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'linux_link_kerberos%': 0, | 8 'linux_link_kerberos%': 0, |
9 'conditions': [ | 9 'conditions': [ |
10 ['chromeos==1 or embedded==1 or OS=="ios"', { | 10 ['chromeos==1 or embedded==1 or OS=="ios"', { |
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
699 'dependencies': [ | 699 'dependencies': [ |
700 '../base/base.gyp:base', | 700 '../base/base.gyp:base', |
701 '../sql/sql.gyp:sql', | 701 '../sql/sql.gyp:sql', |
702 'net', | 702 'net', |
703 ], | 703 ], |
704 'sources': [ | 704 'sources': [ |
705 '<@(net_extras_sources)', | 705 '<@(net_extras_sources)', |
706 ], | 706 ], |
707 }, | 707 }, |
708 { | 708 { |
709 'target_name': 'net_docs', | |
710 'type': 'none', | |
711 'actions': [ | |
712 { | |
713 'action_name': 'net_docs', | |
714 'variables': { | |
715 'net_docs_input_dir': '.', | |
716 }, | |
717 'inputs': [ | |
718 '<@(net_docs_sources)', | |
719 ], | |
720 'outputs': [ | |
721 '<(net_docs_output_dir)', | |
722 ], | |
723 'action': [ | |
724 'python', | |
725 '<(net_docs_script)', | |
726 '--input_path', | |
727 '<(net_docs_input_dir)', | |
728 '--output_path', | |
729 '<(net_docs_output_dir)', | |
730 '<@(net_docs_sources)', | |
731 ], | |
732 'message': 'Rendering network stack documentation', | |
733 } | |
734 ], | |
735 }, | |
736 { | |
737 'target_name': 'http_server', | 709 'target_name': 'http_server', |
738 'type': 'static_library', | 710 'type': 'static_library', |
739 'variables': { 'enable_wexit_time_destructors': 1, }, | 711 'variables': { 'enable_wexit_time_destructors': 1, }, |
740 'dependencies': [ | 712 'dependencies': [ |
741 '../base/base.gyp:base', | 713 '../base/base.gyp:base', |
742 'net', | 714 'net', |
743 ], | 715 ], |
744 'sources': [ | 716 'sources': [ |
745 'server/http_connection.cc', | 717 'server/http_connection.cc', |
746 'server/http_connection.h', | 718 'server/http_connection.h', |
(...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1726 '../build/isolate.gypi', | 1698 '../build/isolate.gypi', |
1727 ], | 1699 ], |
1728 'sources': [ | 1700 'sources': [ |
1729 'net_unittests.isolate', | 1701 'net_unittests.isolate', |
1730 ], | 1702 ], |
1731 }, | 1703 }, |
1732 ], | 1704 ], |
1733 }], | 1705 }], |
1734 ], | 1706 ], |
1735 } | 1707 } |
OLD | NEW |