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 'target_name': 'network_service_bindings_mojom', | 7 'target_name': 'network_service_bindings_mojom', |
8 'type': 'none', | 8 'type': 'none', |
9 'variables': { | 9 'variables': { |
10 'mojom_files': [ | 10 'mojom_files': [ |
(...skipping 11 matching lines...) Expand all Loading... |
22 'services/network/public/interfaces/url_loader.mojom', | 22 'services/network/public/interfaces/url_loader.mojom', |
23 'services/network/public/interfaces/web_socket.mojom', | 23 'services/network/public/interfaces/web_socket.mojom', |
24 ], | 24 ], |
25 'mojom_include_path': '<(DEPTH)/mojo/services', | 25 'mojom_include_path': '<(DEPTH)/mojo/services', |
26 }, | 26 }, |
27 'includes': [ | 27 'includes': [ |
28 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', | 28 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', |
29 ], | 29 ], |
30 }, { | 30 }, { |
31 # GN version: //mojo/services/network/public/interfaces | 31 # GN version: //mojo/services/network/public/interfaces |
32 'target_name': 'network_service_bindings_libs', | 32 'target_name': 'network_service_bindings_lib', |
33 'type': 'static_library', | 33 'type': 'static_library', |
34 'dependencies': [ | 34 'dependencies': [ |
35 'network_service_bindings_mojom', | 35 'network_service_bindings_mojom', |
36 ], | 36 ], |
| 37 }, { |
| 38 # Target used to depend only on the bindings generation action, not on any |
| 39 # outputs. |
| 40 'target_name': 'network_service_bindings_generation', |
| 41 'type': 'none', |
| 42 'hard_dependency': 1, |
| 43 'dependencies': [ |
| 44 'network_service_bindings_mojom', |
| 45 ], |
37 }], | 46 }], |
38 } | 47 } |
OLD | NEW |