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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'content_common_mojo_bindings', | 8 'target_name': 'content_common_mojo_bindings', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { | 10 'variables': { |
11 'enable_wexit_time_destructors': 1, | 11 'enable_wexit_time_destructors': 1, |
12 }, | 12 }, |
13 'sources': [ | 13 'sources': [ |
14 # NOTE: Sources duplicated in //content/common/BUILD.gn:mojo_bindings. | 14 # NOTE: Sources duplicated in //content/common/BUILD.gn:mojo_bindings. |
15 'common/application_setup.mojom', | 15 'common/application_setup.mojom', |
16 'common/background_sync_service.mojom', | 16 'common/background_sync_service.mojom', |
| 17 'common/font_access/font_access_service.mojom', |
| 18 'common/font_access/font_description.mojom', |
17 'common/geolocation_service.mojom', | 19 'common/geolocation_service.mojom', |
18 'common/image_downloader/image_downloader.mojom', | 20 'common/image_downloader/image_downloader.mojom', |
19 'common/permission_service.mojom', | 21 'common/permission_service.mojom', |
20 'common/presentation/presentation_service.mojom', | 22 'common/presentation/presentation_service.mojom', |
21 'common/process_control.mojom', | 23 'common/process_control.mojom', |
22 'common/render_frame_setup.mojom', | 24 'common/render_frame_setup.mojom', |
23 'common/service_port_service.mojom', | 25 'common/service_port_service.mojom', |
24 'common/service_worker/embedded_worker_setup.mojom', | 26 'common/service_worker/embedded_worker_setup.mojom', |
25 'common/vr_service.mojom', | 27 'common/vr_service.mojom', |
26 'common/wake_lock_service.mojom', | 28 'common/wake_lock_service.mojom', |
27 | 29 |
28 # NOTE: Sources duplicated in | 30 # NOTE: Sources duplicated in |
29 # //content/public/common/BUILD.gn:mojo_bindings. | 31 # //content/public/common/BUILD.gn:mojo_bindings. |
30 'public/common/background_sync.mojom', | 32 'public/common/background_sync.mojom', |
31 'public/common/mojo_geoposition.mojom', | 33 'public/common/mojo_geoposition.mojom', |
32 'public/common/permission_status.mojom', | 34 'public/common/permission_status.mojom', |
33 'public/common/service_worker_event_status.mojom', | 35 'public/common/service_worker_event_status.mojom', |
34 ], | 36 ], |
35 'dependencies': [ | 37 'dependencies': [ |
36 '../mojo/mojo_base.gyp:mojo_application_bindings', | 38 '../mojo/mojo_base.gyp:mojo_application_bindings', |
37 '../mojo/mojo_base.gyp:mojo_environment_chromium', | 39 '../mojo/mojo_base.gyp:mojo_environment_chromium', |
38 '../mojo/mojo_public.gyp:mojo_cpp_bindings', | 40 '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
39 '../skia/skia.gyp:skia_mojo', | 41 '../skia/skia.gyp:skia_mojo', |
40 '../ui/mojo/geometry/mojo_bindings.gyp:mojo_geometry_bindings', | 42 '../ui/mojo/geometry/mojo_bindings.gyp:mojo_geometry_bindings', |
41 ], | 43 ], |
42 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], | 44 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], |
43 }, | 45 }, |
44 ] | 46 ] |
45 } | 47 } |
OLD | NEW |