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 { |
709 'target_name': 'http_server', | 737 'target_name': 'http_server', |
710 'type': 'static_library', | 738 'type': 'static_library', |
711 'variables': { 'enable_wexit_time_destructors': 1, }, | 739 'variables': { 'enable_wexit_time_destructors': 1, }, |
712 'dependencies': [ | 740 'dependencies': [ |
713 '../base/base.gyp:base', | 741 '../base/base.gyp:base', |
714 'net', | 742 'net', |
715 ], | 743 ], |
716 'sources': [ | 744 'sources': [ |
717 'server/http_connection.cc', | 745 'server/http_connection.cc', |
718 'server/http_connection.h', | 746 'server/http_connection.h', |
(...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1698 '../build/isolate.gypi', | 1726 '../build/isolate.gypi', |
1699 ], | 1727 ], |
1700 'sources': [ | 1728 'sources': [ |
1701 'net_unittests.isolate', | 1729 'net_unittests.isolate', |
1702 ], | 1730 ], |
1703 }, | 1731 }, |
1704 ], | 1732 ], |
1705 }], | 1733 }], |
1706 ], | 1734 ], |
1707 } | 1735 } |
OLD | NEW |