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