Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 { | 5 { |
| 6 'targets': [{ | 6 'targets': [{ |
| 7 # GN version: //mojo/services/network/public/interfaces | 7 # GN version: //mojo/services/network/public/interfaces |
| 8 'target_name': 'network_service_bindings_mojom', | 8 'target_name': 'network_service_bindings_mojom', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
|
stuartmorgan
2015/05/21 13:15:33
I'd recommend instead just making the type here 'n
jam
2015/05/21 15:27:24
Thanks, I'll try that and talk to Ken as well. I'm
| |
| 10 'variables': { | 10 'variables': { |
| 11 'mojom_files': [ | 11 'mojom_files': [ |
| 12 'services/network/public/interfaces/cookie_store.mojom', | 12 'services/network/public/interfaces/cookie_store.mojom', |
| 13 'services/network/public/interfaces/http_connection.mojom', | 13 'services/network/public/interfaces/http_connection.mojom', |
| 14 'services/network/public/interfaces/http_message.mojom', | 14 'services/network/public/interfaces/http_message.mojom', |
| 15 'services/network/public/interfaces/http_server.mojom', | 15 'services/network/public/interfaces/http_server.mojom', |
| 16 'services/network/public/interfaces/net_address.mojom', | 16 'services/network/public/interfaces/net_address.mojom', |
| 17 'services/network/public/interfaces/network_error.mojom', | 17 'services/network/public/interfaces/network_error.mojom', |
| 18 'services/network/public/interfaces/network_service.mojom', | 18 'services/network/public/interfaces/network_service.mojom', |
| 19 'services/network/public/interfaces/tcp_bound_socket.mojom', | 19 'services/network/public/interfaces/tcp_bound_socket.mojom', |
| 20 'services/network/public/interfaces/tcp_connected_socket.mojom', | 20 'services/network/public/interfaces/tcp_connected_socket.mojom', |
| 21 'services/network/public/interfaces/tcp_server_socket.mojom', | 21 'services/network/public/interfaces/tcp_server_socket.mojom', |
| 22 'services/network/public/interfaces/udp_socket.mojom', | 22 'services/network/public/interfaces/udp_socket.mojom', |
| 23 'services/network/public/interfaces/url_loader.mojom', | 23 'services/network/public/interfaces/url_loader.mojom', |
| 24 'services/network/public/interfaces/web_socket.mojom', | 24 'services/network/public/interfaces/web_socket.mojom', |
| 25 ], | 25 ], |
| 26 'mojom_include_path': '<(DEPTH)/mojo/services', | 26 'mojom_include_path': '<(DEPTH)/mojo/services', |
| 27 }, | 27 }, |
| 28 'includes': [ | 28 'includes': [ |
| 29 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', | 29 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', |
| 30 ], | 30 ], |
| 31 'sources': [ | |
| 32 # XCode doesn't want to link a target without a source file. So add a | |
| 33 # dummy file keep the linker happy. See http://crbug.com/157073 | |
| 34 'services/network/xcode_hack.c', | |
| 35 ], | |
| 31 }], | 36 }], |
| 32 } | 37 } |
| OLD | NEW |