| 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 | 8 |
| 9 'linux_link_kerberos%': 0, | 9 'linux_link_kerberos%': 0, |
| 10 'use_tracing_cache_backend%': 0, | 10 'use_tracing_cache_backend%': 0, |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 543 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 544 '../crypto/crypto.gyp:crypto', | 544 '../crypto/crypto.gyp:crypto', |
| 545 '../testing/gmock.gyp:gmock', | 545 '../testing/gmock.gyp:gmock', |
| 546 '../testing/gtest.gyp:gtest', | 546 '../testing/gtest.gyp:gtest', |
| 547 '../third_party/zlib/zlib.gyp:zlib', | 547 '../third_party/zlib/zlib.gyp:zlib', |
| 548 '../url/url.gyp:url_lib', | 548 '../url/url.gyp:url_lib', |
| 549 'balsa', | 549 'balsa', |
| 550 'http_server', | 550 'http_server', |
| 551 'net', | 551 'net', |
| 552 'net_derived_sources', | 552 'net_derived_sources', |
| 553 'net_sqlite', |
| 553 'net_test_support', | 554 'net_test_support', |
| 554 'quic_tools', | 555 'quic_tools', |
| 555 ], | 556 ], |
| 556 'sources': [ | 557 'sources': [ |
| 557 '<@(net_test_sources)', | 558 '<@(net_test_sources)', |
| 558 ], | 559 ], |
| 559 'conditions': [ | 560 'conditions': [ |
| 560 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { | 561 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { |
| 561 'dependencies': [ | 562 'dependencies': [ |
| 562 'epoll_server', | 563 'epoll_server', |
| (...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1037 'action_name': 'net_resources', | 1038 'action_name': 'net_resources', |
| 1038 'variables': { | 1039 'variables': { |
| 1039 'grit_grd_file': 'base/net_resources.grd', | 1040 'grit_grd_file': 'base/net_resources.grd', |
| 1040 }, | 1041 }, |
| 1041 'includes': [ '../build/grit_action.gypi' ], | 1042 'includes': [ '../build/grit_action.gypi' ], |
| 1042 }, | 1043 }, |
| 1043 ], | 1044 ], |
| 1044 'includes': [ '../build/grit_target.gypi' ], | 1045 'includes': [ '../build/grit_target.gypi' ], |
| 1045 }, | 1046 }, |
| 1046 { | 1047 { |
| 1048 'target_name': 'net_sqlite', |
| 1049 'type': 'static_library', |
| 1050 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 1051 'dependencies': [ |
| 1052 '../base/base.gyp:base', |
| 1053 '../sql/sql.gyp:sql', |
| 1054 'net', |
| 1055 ], |
| 1056 'sources': [ |
| 1057 'sqlite/sqlite_server_bound_cert_store.cc', |
| 1058 'sqlite/sqlite_server_bound_cert_store.h', |
| 1059 ], |
| 1060 }, |
| 1061 { |
| 1047 'target_name': 'http_server', | 1062 'target_name': 'http_server', |
| 1048 'type': 'static_library', | 1063 'type': 'static_library', |
| 1049 'variables': { 'enable_wexit_time_destructors': 1, }, | 1064 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 1050 'dependencies': [ | 1065 'dependencies': [ |
| 1051 '../base/base.gyp:base', | 1066 '../base/base.gyp:base', |
| 1052 'net', | 1067 'net', |
| 1053 ], | 1068 ], |
| 1054 'sources': [ | 1069 'sources': [ |
| 1055 'server/http_connection.cc', | 1070 'server/http_connection.cc', |
| 1056 'server/http_connection.h', | 1071 'server/http_connection.h', |
| (...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1704 'net_unittests.isolate', | 1719 'net_unittests.isolate', |
| 1705 ], | 1720 ], |
| 1706 'sources': [ | 1721 'sources': [ |
| 1707 'net_unittests.isolate', | 1722 'net_unittests.isolate', |
| 1708 ], | 1723 ], |
| 1709 }, | 1724 }, |
| 1710 ], | 1725 ], |
| 1711 }], | 1726 }], |
| 1712 ], | 1727 ], |
| 1713 } | 1728 } |
| OLD | NEW |