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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 108 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
109 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | 109 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", |
110 ] | 110 ] |
111 } | 111 } |
112 | 112 |
113 mojo_native_application("apptests") { | 113 mojo_native_application("apptests") { |
114 output_name = "network_service_apptests" | 114 output_name = "network_service_apptests" |
115 testonly = true | 115 testonly = true |
116 | 116 |
117 sources = [ | 117 sources = [ |
| 118 "http_server_apptest.cc", |
118 "udp_socket_apptest.cc", | 119 "udp_socket_apptest.cc", |
119 "url_loader_impl_apptest.cc", | 120 "url_loader_impl_apptest.cc", |
120 ] | 121 ] |
121 | 122 |
122 deps = [ | 123 deps = [ |
123 ":lib", | 124 ":lib", |
124 ":network", | 125 ":network", |
125 "//base", | 126 "//base", |
126 "//mojo/application", | 127 "//mojo/application", |
127 "//mojo/application:test_support", | 128 "//mojo/application:test_support", |
128 "//mojo/common", | 129 "//mojo/common", |
129 "//mojo/services/network/public/cpp", | 130 "//mojo/services/network/public/cpp", |
130 "//mojo/services/network/public/interfaces", | 131 "//mojo/services/network/public/interfaces", |
131 "//net", | 132 "//net", |
132 "//net:test_support", | 133 "//net:test_support", |
133 "//testing/gtest", | 134 "//testing/gtest", |
134 "//third_party/mojo/src/mojo/public/cpp/bindings", | 135 "//third_party/mojo/src/mojo/public/cpp/bindings", |
135 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 136 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
136 ] | 137 ] |
137 } | 138 } |
OLD | NEW |