summaryrefslogtreecommitdiffstats
path: root/content/content_common_mojo_bindings.gyp
blob: aba33f1c2c1a72e6288efc0d29cc5beb7a2e2915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'targets': [
    {
      'target_name': 'content_common_mojo_bindings',
      'type': 'static_library',
      'variables': {
        'enable_wexit_time_destructors': 1,
      },
      'sources': [
        # NOTE: Sources duplicated in //content/common/BUILD.gn:mojo_bindings.
        'common/application_setup.mojom',
        'common/background_sync_service.mojom',
        'common/geolocation_service.mojom',
        'common/image_downloader/image_downloader.mojom',
        'common/permission_service.mojom',
        'common/presentation/presentation_service.mojom',
        'common/process_control.mojom',
        'common/render_frame_setup.mojom',
        'common/service_port_service.mojom',
        'common/service_worker/embedded_worker_setup.mojom',
        'common/vr_service.mojom',
        'common/wake_lock_service.mojom',

        # NOTE: Sources duplicated in
        # //content/public/common/BUILD.gn:mojo_bindings.
        'public/common/background_sync.mojom',
        'public/common/mojo_geoposition.mojom',
        'public/common/permission_status.mojom',
        'public/common/service_worker_event_status.mojom',
      ],
      'dependencies': [
        '../mojo/mojo_base.gyp:mojo_application_bindings',
        '../mojo/mojo_base.gyp:mojo_environment_chromium',
        '../mojo/mojo_public.gyp:mojo_cpp_bindings',
        '../skia/skia.gyp:skia_mojo',
        '../ui/mojo/geometry/mojo_bindings.gyp:mojo_geometry_bindings',
      ],
      'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
    },
  ]
}