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("//third_party/mojo/src/mojo/public/mojo_application.gni") | 5 import("//third_party/mojo/src/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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 deps = [ | 43 deps = [ |
44 ":sources", | 44 ":sources", |
45 ] | 45 ] |
46 } | 46 } |
47 } | 47 } |
48 | 48 |
49 source_set("lib") { | 49 source_set("lib") { |
50 sources = [ | 50 sources = [ |
51 "cookie_store_impl.cc", | 51 "cookie_store_impl.cc", |
52 "cookie_store_impl.h", | 52 "cookie_store_impl.h", |
| 53 "http_connection_impl.cc", |
| 54 "http_connection_impl.h", |
| 55 "http_server_impl.cc", |
| 56 "http_server_impl.h", |
53 "net_adapters.cc", | 57 "net_adapters.cc", |
54 "net_adapters.h", | 58 "net_adapters.h", |
55 "net_address_type_converters.cc", | 59 "net_address_type_converters.cc", |
56 "net_address_type_converters.h", | 60 "net_address_type_converters.h", |
57 "network_context.cc", | 61 "network_context.cc", |
58 "network_context.h", | 62 "network_context.h", |
59 "network_service_delegate.cc", | 63 "network_service_delegate.cc", |
60 "network_service_delegate.h", | 64 "network_service_delegate.h", |
61 "network_service_impl.cc", | 65 "network_service_impl.cc", |
62 "network_service_impl.h", | 66 "network_service_impl.h", |
(...skipping 12 matching lines...) Expand all Loading... |
75 ] | 79 ] |
76 | 80 |
77 deps = [ | 81 deps = [ |
78 "//base", | 82 "//base", |
79 "//mojo/application", | 83 "//mojo/application", |
80 "//mojo/common", | 84 "//mojo/common", |
81 "//mojo/environment:chromium", | 85 "//mojo/environment:chromium", |
82 "//mojo/services/network/public/cpp", | 86 "//mojo/services/network/public/cpp", |
83 "//mojo/services/network/public/interfaces", | 87 "//mojo/services/network/public/interfaces", |
84 "//net", | 88 "//net", |
| 89 "//net:http_server", |
85 "//third_party/mojo/src/mojo/public/cpp/bindings", | 90 "//third_party/mojo/src/mojo/public/cpp/bindings", |
86 "//url", | 91 "//url", |
87 ] | 92 ] |
88 } | 93 } |
89 | 94 |
90 source_set("sources") { | 95 source_set("sources") { |
91 visibility = [ ":*" ] | 96 visibility = [ ":*" ] |
92 | 97 |
93 sources = [ | 98 sources = [ |
94 "main.cc", | 99 "main.cc", |
(...skipping 28 matching lines...) Expand all Loading... |
123 "//mojo/common", | 128 "//mojo/common", |
124 "//mojo/services/network/public/cpp", | 129 "//mojo/services/network/public/cpp", |
125 "//mojo/services/network/public/interfaces", | 130 "//mojo/services/network/public/interfaces", |
126 "//net", | 131 "//net", |
127 "//net:test_support", | 132 "//net:test_support", |
128 "//testing/gtest", | 133 "//testing/gtest", |
129 "//third_party/mojo/src/mojo/public/cpp/bindings", | 134 "//third_party/mojo/src/mojo/public/cpp/bindings", |
130 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 135 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
131 ] | 136 ] |
132 } | 137 } |
OLD | NEW |