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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 "web_socket_impl.cc", | 83 "web_socket_impl.cc", |
84 "web_socket_impl.h", | 84 "web_socket_impl.h", |
85 ] | 85 ] |
86 | 86 |
87 deps = [ | 87 deps = [ |
88 "//base", | 88 "//base", |
89 "//mojo/application/public/cpp", | 89 "//mojo/application/public/cpp", |
90 "//mojo/services/network/public/cpp", | 90 "//mojo/services/network/public/cpp", |
91 "//mojo/services/network/public/interfaces", | 91 "//mojo/services/network/public/interfaces", |
92 "//net", | 92 "//net", |
| 93 "//net:extras", |
93 "//net:http_server", | 94 "//net:http_server", |
94 "//url", | 95 "//url", |
95 "//sql/mojo", | 96 "//sql/mojo", |
96 ] | 97 ] |
97 } | 98 } |
98 | 99 |
99 source_set("sources") { | 100 source_set("sources") { |
100 visibility = [ ":*" ] | 101 visibility = [ ":*" ] |
101 | 102 |
102 sources = [ | 103 sources = [ |
(...skipping 27 matching lines...) Expand all Loading... |
130 "//base", | 131 "//base", |
131 "//mojo/application/public/cpp:test_support", | 132 "//mojo/application/public/cpp:test_support", |
132 "//mojo/services/network/public/cpp", | 133 "//mojo/services/network/public/cpp", |
133 "//mojo/services/network/public/interfaces", | 134 "//mojo/services/network/public/interfaces", |
134 "//net", | 135 "//net", |
135 "//net:test_support", | 136 "//net:test_support", |
136 "//testing/gtest", | 137 "//testing/gtest", |
137 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 138 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
138 ] | 139 ] |
139 } | 140 } |
OLD | NEW |