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

Side by Side Diff: services/user/user.gyp

Issue 1963293002: Replacing Indexed DB Chromium IPC with Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some (incomplete) work on struct traits. Created 4 years, 5 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 'variables': { 6 'variables': {
7 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 13 matching lines...) Expand all
24 'user_service.h', 24 'user_service.h',
25 'user_shell_client.cc', 25 'user_shell_client.cc',
26 'user_shell_client.h', 26 'user_shell_client.h',
27 ], 27 ],
28 'dependencies': [ 28 'dependencies': [
29 'user_app_manifest', 29 'user_app_manifest',
30 'user_service_bindings', 30 'user_service_bindings',
31 '../../base/base.gyp:base', 31 '../../base/base.gyp:base',
32 '../../components/filesystem/filesystem.gyp:filesystem_lib', 32 '../../components/filesystem/filesystem.gyp:filesystem_lib',
33 '../../components/leveldb/leveldb.gyp:leveldb_lib', 33 '../../components/leveldb/leveldb.gyp:leveldb_lib',
34 '../../content/browser/indexed_db/indexed_db.gyp:indexed_db_lib',
34 '../../services/shell/shell_public.gyp:shell_public', 35 '../../services/shell/shell_public.gyp:shell_public',
35 '../../services/tracing/tracing.gyp:tracing_lib', 36 '../../services/tracing/tracing.gyp:tracing_lib',
36 '../../mojo/mojo_edk.gyp:mojo_system_impl', 37 '../../mojo/mojo_edk.gyp:mojo_system_impl',
37 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', 38 '../../mojo/mojo_public.gyp:mojo_cpp_bindings',
38 '../../url/url.gyp:url_lib', 39 '../../url/url.gyp:url_lib',
39 ], 40 ],
40 'export_dependent_settings': [ 41 'export_dependent_settings': [
41 'user_service_bindings', 42 'user_service_bindings',
42 ], 43 ],
43 }, 44 },
44 { 45 {
45 # GN version: //services/user/public/interfaces 46 # GN version: //services/user/public/interfaces
46 'target_name': 'user_service_bindings', 47 'target_name': 'user_service_bindings',
47 'type': 'static_library', 48 'type': 'static_library',
48 'dependencies': [ 49 'dependencies': [
49 'user_service_bindings_mojom', 50 'user_service_bindings_mojom',
50 ], 51 ],
51 }, 52 },
52 { 53 {
53 'target_name': 'user_service_bindings_mojom', 54 'target_name': 'user_service_bindings_mojom',
54 'type': 'none', 55 'type': 'none',
55 'variables': { 56 'variables': {
56 'mojom_files': [ 57 'mojom_files': [
57 'public/interfaces/user_service.mojom', 58 'public/interfaces/user_service.mojom',
58 ], 59 ],
59 }, 60 },
60 'dependencies': [ 61 'dependencies': [
61 '../../components/filesystem/filesystem.gyp:filesystem_bindings_mojom', 62 '../../components/filesystem/filesystem.gyp:filesystem_bindings_mojom',
62 '../../components/leveldb/leveldb.gyp:leveldb_bindings_mojom', 63 '../../components/leveldb/leveldb.gyp:leveldb_bindings_mojom',
64 '../../content/browser/indexed_db/indexed_db.gyp:indexed_db_bindings',
63 ], 65 ],
64 'includes': [ 66 'includes': [
65 '../../mojo/mojom_bindings_generator_explicit.gypi', 67 '../../mojo/mojom_bindings_generator_explicit.gypi',
66 ], 68 ],
67 }, 69 },
68 { 70 {
69 'target_name': 'user_service_public_lib', 71 'target_name': 'user_service_public_lib',
70 'type': 'static_library', 72 'type': 'static_library',
71 'sources': [ 73 'sources': [
72 'public/cpp/constants.cc', 74 'public/cpp/constants.cc',
(...skipping 12 matching lines...) Expand all
85 'application_name': 'user', 87 'application_name': 'user',
86 'source_manifest': '<(DEPTH)/services/user/manifest.json', 88 'source_manifest': '<(DEPTH)/services/user/manifest.json',
87 }, 89 },
88 'includes': [ 90 'includes': [
89 '../../mojo/public/mojo_application_manifest.gypi', 91 '../../mojo/public/mojo_application_manifest.gypi',
90 ], 92 ],
91 'hard_dependency': 1, 93 'hard_dependency': 1,
92 }, 94 },
93 ], 95 ],
94 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698