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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 '../third_party/mojo/mojo_variables.gypi', | 10 '../third_party/mojo/mojo_variables.gypi', |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 '../third_party/mojo/src', | 172 '../third_party/mojo/src', |
173 ], | 173 ], |
174 }, | 174 }, |
175 }, | 175 }, |
176 { | 176 { |
177 'target_name': 'mojo_application_bindings_mojom', | 177 'target_name': 'mojo_application_bindings_mojom', |
178 'type': 'none', | 178 'type': 'none', |
179 'variables': { | 179 'variables': { |
180 'mojom_files': [ | 180 'mojom_files': [ |
181 'application/public/interfaces/application.mojom', | 181 'application/public/interfaces/application.mojom', |
| 182 'application/public/interfaces/content_handler.mojom', |
182 'application/public/interfaces/service_provider.mojom', | 183 'application/public/interfaces/service_provider.mojom', |
183 'application/public/interfaces/shell.mojom', | 184 'application/public/interfaces/shell.mojom', |
184 ], | 185 ], |
185 }, | 186 }, |
| 187 'dependencies': [ |
| 188 'mojo_services.gyp:network_service_bindings_mojom', |
| 189 ], |
| 190 'export_dependent_settings': [ |
| 191 'mojo_services.gyp:network_service_bindings_mojom', |
| 192 ], |
186 'includes': [ '../third_party/mojo/mojom_bindings_generator_explicit.gypi'
], | 193 'includes': [ '../third_party/mojo/mojom_bindings_generator_explicit.gypi'
], |
187 }, | 194 }, |
188 { | 195 { |
189 # GN version: //mojo/application/public/cpp | 196 # GN version: //mojo/application/public/cpp |
190 'target_name': 'mojo_application_base', | 197 'target_name': 'mojo_application_base', |
191 'type': 'static_library', | 198 'type': 'static_library', |
192 'sources': [ | 199 'sources': [ |
193 'application/public/cpp/app_lifetime_helper.h', | 200 'application/public/cpp/app_lifetime_helper.h', |
194 'application/public/cpp/application_connection.h', | 201 'application/public/cpp/application_connection.h', |
195 'application/public/cpp/application_delegate.h', | 202 'application/public/cpp/application_delegate.h', |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 ], | 309 ], |
303 'variables': { | 310 'variables': { |
304 'java_in_dir': '<(DEPTH)/mojo/android/system', | 311 'java_in_dir': '<(DEPTH)/mojo/android/system', |
305 }, | 312 }, |
306 'includes': [ '../build/java.gypi' ], | 313 'includes': [ '../build/java.gypi' ], |
307 }, | 314 }, |
308 ] | 315 ] |
309 }] | 316 }] |
310 ] | 317 ] |
311 } | 318 } |
OLD | NEW |