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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 deps = [ | 93 deps = [ |
94 "//base", | 94 "//base", |
95 "//components/filesystem/public/interfaces", | 95 "//components/filesystem/public/interfaces", |
96 "//mojo/application/public/cpp", | 96 "//mojo/application/public/cpp", |
97 "//mojo/common:common_base", | 97 "//mojo/common:common_base", |
98 "//mojo/common:url_type_converters", | 98 "//mojo/common:url_type_converters", |
99 "//mojo/message_pump", | 99 "//mojo/message_pump", |
100 "//mojo/public/cpp/system:system", | 100 "//mojo/public/cpp/system:system", |
101 "//mojo/services/network/public/cpp", | 101 "//mojo/services/network/public/cpp", |
102 "//mojo/services/network/public/interfaces", | 102 "//mojo/services/network/public/interfaces", |
| 103 "//mojo/services/tracing/public/cpp", |
103 "//net", | 104 "//net", |
104 "//net:extras", | 105 "//net:extras", |
105 "//net:http_server", | 106 "//net:http_server", |
106 "//url", | 107 "//url", |
107 "//sql/mojo", | 108 "//sql/mojo", |
108 ] | 109 ] |
109 } | 110 } |
110 | 111 |
111 source_set("sources") { | 112 source_set("sources") { |
112 visibility = [ ":*" ] | 113 visibility = [ ":*" ] |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 "//mojo/common:common_base", | 146 "//mojo/common:common_base", |
146 "//mojo/message_pump", | 147 "//mojo/message_pump", |
147 "//mojo/public/cpp/bindings:callback", | 148 "//mojo/public/cpp/bindings:callback", |
148 "//mojo/services/network/public/cpp", | 149 "//mojo/services/network/public/cpp", |
149 "//mojo/services/network/public/interfaces", | 150 "//mojo/services/network/public/interfaces", |
150 "//net", | 151 "//net", |
151 "//net:test_support", | 152 "//net:test_support", |
152 "//testing/gtest", | 153 "//testing/gtest", |
153 ] | 154 ] |
154 } | 155 } |
OLD | NEW |