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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 "//net", | 103 "//net", |
104 "//net:extras", | 104 "//net:extras", |
105 "//net:http_server", | 105 "//net:http_server", |
| 106 "//sql/mojo", |
106 "//url", | 107 "//url", |
107 "//sql/mojo", | |
108 ] | 108 ] |
109 } | 109 } |
110 | 110 |
111 source_set("sources") { | 111 source_set("sources") { |
112 visibility = [ ":*" ] | 112 visibility = [ ":*" ] |
113 | 113 |
114 sources = [ | 114 sources = [ |
115 "main.cc", | 115 "main.cc", |
116 ] | 116 ] |
117 | 117 |
(...skipping 27 matching lines...) Expand all Loading... |
145 "//mojo/common:common_base", | 145 "//mojo/common:common_base", |
146 "//mojo/message_pump", | 146 "//mojo/message_pump", |
147 "//mojo/public/cpp/bindings:callback", | 147 "//mojo/public/cpp/bindings:callback", |
148 "//mojo/services/network/public/cpp", | 148 "//mojo/services/network/public/cpp", |
149 "//mojo/services/network/public/interfaces", | 149 "//mojo/services/network/public/interfaces", |
150 "//net", | 150 "//net", |
151 "//net:test_support", | 151 "//net:test_support", |
152 "//testing/gtest", | 152 "//testing/gtest", |
153 ] | 153 ] |
154 } | 154 } |
OLD | NEW |