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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "web_socket_impl.cc", | 86 "web_socket_impl.cc", |
87 "web_socket_impl.h", | 87 "web_socket_impl.h", |
88 ] | 88 ] |
89 | 89 |
90 deps = [ | 90 deps = [ |
91 "//base", | 91 "//base", |
92 "//components/filesystem/public/interfaces", | 92 "//components/filesystem/public/interfaces", |
93 "//mojo/application/public/cpp", | 93 "//mojo/application/public/cpp", |
94 "//mojo/common:common_base", | 94 "//mojo/common:common_base", |
95 "//mojo/common:url_type_converters", | 95 "//mojo/common:url_type_converters", |
96 "//mojo/message_pump", | |
97 "//mojo/services/network/public/cpp", | 96 "//mojo/services/network/public/cpp", |
98 "//mojo/services/network/public/interfaces", | 97 "//mojo/services/network/public/interfaces", |
99 "//net", | 98 "//net", |
100 "//net:extras", | 99 "//net:extras", |
101 "//net:http_server", | 100 "//net:http_server", |
102 "//url", | 101 "//url", |
103 "//sql/mojo", | 102 "//sql/mojo", |
104 "//third_party/mojo/src/mojo/public/cpp/system:system", | 103 "//third_party/mojo/src/mojo/public/cpp/system:system", |
105 ] | 104 ] |
106 } | 105 } |
(...skipping 26 matching lines...) Expand all Loading... |
133 "url_loader_impl_apptest.cc", | 132 "url_loader_impl_apptest.cc", |
134 ] | 133 ] |
135 | 134 |
136 deps = [ | 135 deps = [ |
137 ":lib", | 136 ":lib", |
138 ":network", | 137 ":network", |
139 "//base", | 138 "//base", |
140 "//mojo/application/public/cpp:sources", | 139 "//mojo/application/public/cpp:sources", |
141 "//mojo/application/public/cpp:test_support", | 140 "//mojo/application/public/cpp:test_support", |
142 "//mojo/common:common_base", | 141 "//mojo/common:common_base", |
143 "//mojo/message_pump", | |
144 "//mojo/services/network/public/cpp", | 142 "//mojo/services/network/public/cpp", |
145 "//mojo/services/network/public/interfaces", | 143 "//mojo/services/network/public/interfaces", |
146 "//net", | 144 "//net", |
147 "//net:test_support", | 145 "//net:test_support", |
148 "//testing/gtest", | 146 "//testing/gtest", |
149 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 147 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
150 ] | 148 ] |
151 } | 149 } |
OLD | NEW |