OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 import("//build/module_args/mojo.gni") | |
6 import("$mojo_sdk_root/mojo/public/tools/bindings/mojom.gni") | |
7 | |
8 mojom("interfaces") { | |
9 sources = [ | |
10 "cookie_store.mojom", | |
11 "host_resolver.mojom", | |
12 "http_connection.mojom", | |
13 "http_message.mojom", | |
14 "http_server.mojom", | |
15 "net_address.mojom", | |
16 "network_service.mojom", | |
17 "tcp_bound_socket.mojom", | |
18 "tcp_connected_socket.mojom", | |
19 "tcp_server_socket.mojom", | |
20 "udp_socket.mojom", | |
21 "url_loader.mojom", | |
22 "url_loader_interceptor.mojom", | |
23 "web_socket.mojom", | |
24 ] | |
25 | |
26 mojo_sdk_deps = [ "mojo/public/interfaces/network" ] | |
27 | |
28 import_dirs = [ get_path_info("../../../", "abspath") ] | |
29 } | |
OLD | NEW |