OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
9 | 9 |
10 java_library_path = "$target_out_dir/java_library.dex.jar" | 10 java_library_path = "$target_out_dir/java_library.dex.jar" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 } | 51 } |
52 | 52 |
53 source_set("lib") { | 53 source_set("lib") { |
54 sources = [ | 54 sources = [ |
55 "cookie_store_impl.cc", | 55 "cookie_store_impl.cc", |
56 "cookie_store_impl.h", | 56 "cookie_store_impl.h", |
57 "http_connection_impl.cc", | 57 "http_connection_impl.cc", |
58 "http_connection_impl.h", | 58 "http_connection_impl.h", |
59 "http_server_impl.cc", | 59 "http_server_impl.cc", |
60 "http_server_impl.h", | 60 "http_server_impl.h", |
| 61 "mojo_persistent_cookie_store.cc", |
| 62 "mojo_persistent_cookie_store.h", |
61 "net_adapters.cc", | 63 "net_adapters.cc", |
62 "net_adapters.h", | 64 "net_adapters.h", |
63 "net_address_type_converters.cc", | 65 "net_address_type_converters.cc", |
64 "net_address_type_converters.h", | 66 "net_address_type_converters.h", |
65 "network_context.cc", | 67 "network_context.cc", |
66 "network_context.h", | 68 "network_context.h", |
67 "network_service_delegate.cc", | 69 "network_service_delegate.cc", |
68 "network_service_delegate.h", | 70 "network_service_delegate.h", |
| 71 "network_service_delegate_observer.h", |
69 "network_service_impl.cc", | 72 "network_service_impl.cc", |
70 "network_service_impl.h", | 73 "network_service_impl.h", |
71 "tcp_bound_socket_impl.cc", | 74 "tcp_bound_socket_impl.cc", |
72 "tcp_bound_socket_impl.h", | 75 "tcp_bound_socket_impl.h", |
73 "tcp_connected_socket_impl.cc", | 76 "tcp_connected_socket_impl.cc", |
74 "tcp_connected_socket_impl.h", | 77 "tcp_connected_socket_impl.h", |
75 "tcp_server_socket_impl.cc", | 78 "tcp_server_socket_impl.cc", |
76 "tcp_server_socket_impl.h", | 79 "tcp_server_socket_impl.h", |
77 "udp_socket_impl.cc", | 80 "udp_socket_impl.cc", |
78 "udp_socket_impl.h", | 81 "udp_socket_impl.h", |
79 "url_loader_factory_impl.cc", | 82 "url_loader_factory_impl.cc", |
80 "url_loader_factory_impl.h", | 83 "url_loader_factory_impl.h", |
81 "url_loader_impl.cc", | 84 "url_loader_impl.cc", |
82 "url_loader_impl.h", | 85 "url_loader_impl.h", |
83 "web_socket_impl.cc", | 86 "web_socket_impl.cc", |
84 "web_socket_impl.h", | 87 "web_socket_impl.h", |
85 ] | 88 ] |
86 | 89 |
87 deps = [ | 90 deps = [ |
88 "//base", | 91 "//base", |
89 "//mojo/application/public/cpp", | 92 "//mojo/application/public/cpp", |
90 "//mojo/services/network/public/cpp", | 93 "//mojo/services/network/public/cpp", |
91 "//mojo/services/network/public/interfaces", | 94 "//mojo/services/network/public/interfaces", |
92 "//net", | 95 "//net", |
| 96 "//net:extras", |
93 "//net:http_server", | 97 "//net:http_server", |
94 "//url", | 98 "//url", |
95 "//sql/mojo", | 99 "//sql/mojo", |
96 ] | 100 ] |
97 } | 101 } |
98 | 102 |
99 source_set("sources") { | 103 source_set("sources") { |
100 visibility = [ ":*" ] | 104 visibility = [ ":*" ] |
101 | 105 |
102 sources = [ | 106 sources = [ |
(...skipping 27 matching lines...) Expand all Loading... |
130 "//base", | 134 "//base", |
131 "//mojo/application/public/cpp:test_support", | 135 "//mojo/application/public/cpp:test_support", |
132 "//mojo/services/network/public/cpp", | 136 "//mojo/services/network/public/cpp", |
133 "//mojo/services/network/public/interfaces", | 137 "//mojo/services/network/public/interfaces", |
134 "//net", | 138 "//net", |
135 "//net:test_support", | 139 "//net:test_support", |
136 "//testing/gtest", | 140 "//testing/gtest", |
137 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 141 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
138 ] | 142 ] |
139 } | 143 } |
OLD | NEW |