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

Side by Side Diff: services/shell/shell_public.gyp

Issue 1966563002: Extracted shell_interfaces and shell_public into a separate gyp file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed export_dependent_settings Created 4 years, 7 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
« no previous file with comments | « services/shell/shell.gyp ('k') | services/tracing/tracing.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'shell_interfaces',
9 'type': 'none',
10 'variables': {
11 'mojom_files': [
12 '../catalog/public/interfaces/catalog.mojom',
13 'public/interfaces/capabilities.mojom',
14 'public/interfaces/connector.mojom',
15 'public/interfaces/interface_provider.mojom',
16 'public/interfaces/shell.mojom',
17 'public/interfaces/shell_client.mojom',
18 'public/interfaces/shell_client_factory.mojom',
19 'public/interfaces/shell_resolver.mojom',
20 ],
21 'mojom_typemaps': [
22 '<(DEPTH)/mojo/common/common_custom_types.typemap',
23 ],
24 },
25 'includes': [ '../../mojo/mojom_bindings_generator_explicit.gypi' ],
26 'dependencies': [
27 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_custom_types_mojom',
28 ],
29 'export_dependent_settings': [
30 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_custom_types_mojom',
31 ],
32 },
33 {
34 # GN version: //services/shell/public/cpp
35 'target_name': 'shell_public',
36 'type': 'static_library',
37 'sources': [
38 'public/cpp/application_runner.h',
39 'public/cpp/capabilities.h',
40 'public/cpp/connect.h',
41 'public/cpp/connection.h',
42 'public/cpp/connector.h',
43 'public/cpp/identity.h',
44 'public/cpp/initialize_base_and_icu.cc',
45 'public/cpp/initialize_base_and_icu.h',
46 'public/cpp/interface_binder.h',
47 'public/cpp/interface_factory.h',
48 'public/cpp/interface_factory_impl.h',
49 'public/cpp/interface_registry.h',
50 'public/cpp/lib/application_runner.cc',
51 'public/cpp/lib/capabilities.cc',
52 'public/cpp/lib/connection_impl.cc',
53 'public/cpp/lib/connection_impl.h',
54 'public/cpp/lib/connector_impl.cc',
55 'public/cpp/lib/connector_impl.h',
56 'public/cpp/lib/identity.cc',
57 'public/cpp/lib/interface_factory_binder.h',
58 'public/cpp/lib/interface_registry.cc',
59 'public/cpp/lib/names.cc',
60 'public/cpp/lib/shell_client.cc',
61 'public/cpp/lib/shell_connection.cc',
62 'public/cpp/lib/shell_connection_ref.cc',
63 'public/cpp/names.h',
64 'public/cpp/shell_client.h',
65 'public/cpp/shell_connection.h',
66 'public/cpp/shell_connection_ref.h',
67 ],
68 'dependencies': [
69 'shell_interfaces',
70 '<(DEPTH)/base/base.gyp:base_i18n',
71 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings',
72 ],
73 },
74 ],
75 }
OLDNEW
« no previous file with comments | « services/shell/shell.gyp ('k') | services/tracing/tracing.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698