Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Side by Side Diff: content/content_common_mojo_bindings.gyp

Issue 1808203005: [OnionSoup] Moving VR service from content to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reworked as per comments! Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 # GN version: //content/common:mojo_bindings 8 # GN version: //content/common:mojo_bindings
9 'target_name': 'content_common_mojo_bindings_mojom', 9 'target_name': 'content_common_mojo_bindings_mojom',
10 'type': 'none', 10 'type': 'none',
11 'variables': { 11 'variables': {
12 'mojom_extra_generator_args': [ 12 'mojom_extra_generator_args': [
13 '--typemap', '<(DEPTH)/url/mojo/origin.typemap', 13 '--typemap', '<(DEPTH)/url/mojo/origin.typemap',
14 ], 14 ],
15 'mojom_files': [ 15 'mojom_files': [
16 # NOTE: Sources duplicated in //content/common/BUILD.gn:mojo_bindings. 16 # NOTE: Sources duplicated in //content/common/BUILD.gn:mojo_bindings.
17 'common/application_setup.mojom', 17 'common/application_setup.mojom',
18 'common/background_sync_service.mojom', 18 'common/background_sync_service.mojom',
19 'common/geolocation_service.mojom', 19 'common/geolocation_service.mojom',
20 'common/image_downloader/image_downloader.mojom', 20 'common/image_downloader/image_downloader.mojom',
21 'common/leveldb_wrapper.mojom', 21 'common/leveldb_wrapper.mojom',
22 'common/permission_service.mojom', 22 'common/permission_service.mojom',
23 'common/presentation/presentation_service.mojom', 23 'common/presentation/presentation_service.mojom',
24 'common/process_control.mojom', 24 'common/process_control.mojom',
25 'common/render_frame_setup.mojom', 25 'common/render_frame_setup.mojom',
26 'common/service_port_service.mojom', 26 'common/service_port_service.mojom',
27 'common/service_worker/embedded_worker_setup.mojom', 27 'common/service_worker/embedded_worker_setup.mojom',
28 'common/storage_partition_service.mojom', 28 'common/storage_partition_service.mojom',
29 'common/vr_service.mojom',
30 'common/wake_lock_service.mojom', 29 'common/wake_lock_service.mojom',
31 30
32 # NOTE: Sources duplicated in 31 # NOTE: Sources duplicated in
33 # //content/public/common/BUILD.gn:mojo_bindings. 32 # //content/public/common/BUILD.gn:mojo_bindings.
34 'public/common/background_sync.mojom', 33 'public/common/background_sync.mojom',
35 'public/common/mojo_geoposition.mojom', 34 'public/common/mojo_geoposition.mojom',
36 'public/common/permission_status.mojom', 35 'public/common/permission_status.mojom',
37 'public/common/service_worker_event_status.mojom', 36 'public/common/service_worker_event_status.mojom',
38 ], 37 ],
39 }, 38 },
(...skipping 16 matching lines...) Expand all
56 'type': 'static_library', 55 'type': 'static_library',
57 'variables': { 56 'variables': {
58 'enable_wexit_time_destructors': 1, 57 'enable_wexit_time_destructors': 1,
59 }, 58 },
60 'dependencies': [ 59 'dependencies': [
61 'content_common_mojo_bindings_mojom', 60 'content_common_mojo_bindings_mojom',
62 ], 61 ],
63 }, 62 },
64 ] 63 ]
65 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698