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

Side by Side Diff: content/content_common_mojo_bindings.gyp

Issue 1798113002: Switch StoragePartitionService interface to use url::Origin instead of mojo string. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix android builds per Ken 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': [
13 '--typemap', '<(DEPTH)/url/mojo/origin.typemap',
14 ],
12 'mojom_files': [ 15 'mojom_files': [
13 # NOTE: Sources duplicated in //content/common/BUILD.gn:mojo_bindings. 16 # NOTE: Sources duplicated in //content/common/BUILD.gn:mojo_bindings.
14 'common/application_setup.mojom', 17 'common/application_setup.mojom',
15 'common/background_sync_service.mojom', 18 'common/background_sync_service.mojom',
16 'common/geolocation_service.mojom', 19 'common/geolocation_service.mojom',
17 'common/image_downloader/image_downloader.mojom', 20 'common/image_downloader/image_downloader.mojom',
18 'common/leveldb_wrapper.mojom', 21 'common/leveldb_wrapper.mojom',
19 'common/permission_service.mojom', 22 'common/permission_service.mojom',
20 'common/presentation/presentation_service.mojom', 23 'common/presentation/presentation_service.mojom',
21 'common/process_control.mojom', 24 'common/process_control.mojom',
(...skipping 11 matching lines...) Expand all
33 'public/common/permission_status.mojom', 36 'public/common/permission_status.mojom',
34 'public/common/service_worker_event_status.mojom', 37 'public/common/service_worker_event_status.mojom',
35 ], 38 ],
36 }, 39 },
37 'dependencies': [ 40 'dependencies': [
38 '../components/leveldb/leveldb.gyp:leveldb_bindings_mojom', 41 '../components/leveldb/leveldb.gyp:leveldb_bindings_mojom',
39 '../mojo/mojo_base.gyp:mojo_application_bindings', 42 '../mojo/mojo_base.gyp:mojo_application_bindings',
40 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 43 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
41 '../skia/skia.gyp:skia_mojo', 44 '../skia/skia.gyp:skia_mojo',
42 '../ui/mojo/geometry/mojo_bindings.gyp:mojo_geometry_bindings', 45 '../ui/mojo/geometry/mojo_bindings.gyp:mojo_geometry_bindings',
46 '../url/url.gyp:url_interfaces_mojom',
47 ],
48 'export_dependent_settings': [
49 '../url/url.gyp:url_interfaces_mojom',
43 ], 50 ],
44 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], 51 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ],
45 }, 52 },
46 { 53 {
47 'target_name': 'content_common_mojo_bindings', 54 'target_name': 'content_common_mojo_bindings',
48 'type': 'static_library', 55 'type': 'static_library',
49 'variables': { 56 'variables': {
50 'enable_wexit_time_destructors': 1, 57 'enable_wexit_time_destructors': 1,
51 }, 58 },
52 'dependencies': [ 59 'dependencies': [
53 'content_common_mojo_bindings_mojom', 60 'content_common_mojo_bindings_mojom',
54 ], 61 ],
55 }, 62 },
56 ] 63 ]
57 } 64 }
OLDNEW
« no previous file with comments | « content/common/storage_partition_service.mojom ('k') | content/renderer/dom_storage/local_storage_cached_area.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698