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

Side by Side Diff: mojo/mojo_base.gyp

Issue 1775113003: Morph CapabilityFilter into caps::Capabilities, which supports capability classes (yet unimplemente… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@44cattests
Patch Set: . 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
« no previous file with comments | « no previous file | mojo/services/catalog/builder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # Essential components (and their tests) that are needed to build 5 # Essential components (and their tests) that are needed to build
6 # Chrome should be here. Other components that are useful only in 6 # Chrome should be here. Other components that are useful only in
7 # Mojo land like mojo_shell should be in mojo.gyp. 7 # Mojo land like mojo_shell should be in mojo.gyp.
8 { 8 {
9 'includes': [ 9 'includes': [
10 'mojo_variables.gypi', 10 'mojo_variables.gypi',
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'message_pump/message_pump_mojo_unittest.cc', 119 'message_pump/message_pump_mojo_unittest.cc',
120 ], 120 ],
121 }, 121 },
122 { 122 {
123 'target_name': 'mojo_application_bindings_mojom', 123 'target_name': 'mojo_application_bindings_mojom',
124 'type': 'none', 124 'type': 'none',
125 'variables': { 125 'variables': {
126 'mojom_files': [ 126 'mojom_files': [
127 'services/catalog/public/interfaces/catalog.mojom', 127 'services/catalog/public/interfaces/catalog.mojom',
128 'services/catalog/public/interfaces/resolver.mojom', 128 'services/catalog/public/interfaces/resolver.mojom',
129 'shell/public/interfaces/capabilities.mojom',
129 'shell/public/interfaces/connector.mojom', 130 'shell/public/interfaces/connector.mojom',
130 'shell/public/interfaces/interface_provider.mojom', 131 'shell/public/interfaces/interface_provider.mojom',
131 'shell/public/interfaces/shell.mojom', 132 'shell/public/interfaces/shell.mojom',
132 'shell/public/interfaces/shell_client.mojom', 133 'shell/public/interfaces/shell_client.mojom',
133 'shell/public/interfaces/shell_client_factory.mojom', 134 'shell/public/interfaces/shell_client_factory.mojom',
134 'shell/public/interfaces/shell_resolver.mojom', 135 'shell/public/interfaces/shell_resolver.mojom',
135 ], 136 ],
136 }, 137 },
137 'includes': [ 'mojom_bindings_generator_explicit.gypi' ], 138 'includes': [ 'mojom_bindings_generator_explicit.gypi' ],
138 }, 139 },
139 { 140 {
140 # GN version: //mojo/shell/public/cpp 141 # GN version: //mojo/shell/public/cpp
141 'target_name': 'mojo_application_base', 142 'target_name': 'mojo_application_base',
142 'type': 'static_library', 143 'type': 'static_library',
143 'sources': [ 144 'sources': [
144 'shell/public/cpp/application_runner.h', 145 'shell/public/cpp/application_runner.h',
146 'shell/public/cpp/capabilities.h',
145 'shell/public/cpp/connect.h', 147 'shell/public/cpp/connect.h',
146 'shell/public/cpp/connection.h', 148 'shell/public/cpp/connection.h',
147 'shell/public/cpp/connector.h', 149 'shell/public/cpp/connector.h',
148 'shell/public/cpp/identity.h', 150 'shell/public/cpp/identity.h',
149 'shell/public/cpp/initialize_base_and_icu.cc', 151 'shell/public/cpp/initialize_base_and_icu.cc',
150 'shell/public/cpp/initialize_base_and_icu.h', 152 'shell/public/cpp/initialize_base_and_icu.h',
151 'shell/public/cpp/interface_binder.h', 153 'shell/public/cpp/interface_binder.h',
152 'shell/public/cpp/interface_factory.h', 154 'shell/public/cpp/interface_factory.h',
153 'shell/public/cpp/interface_factory_impl.h', 155 'shell/public/cpp/interface_factory_impl.h',
154 'shell/public/cpp/interface_registry.h', 156 'shell/public/cpp/interface_registry.h',
155 'shell/public/cpp/lib/application_runner.cc', 157 'shell/public/cpp/lib/application_runner.cc',
158 'shell/public/cpp/lib/capabilities.cc',
156 'shell/public/cpp/lib/connection_impl.cc', 159 'shell/public/cpp/lib/connection_impl.cc',
157 'shell/public/cpp/lib/connection_impl.h', 160 'shell/public/cpp/lib/connection_impl.h',
158 'shell/public/cpp/lib/connector_impl.cc', 161 'shell/public/cpp/lib/connector_impl.cc',
159 'shell/public/cpp/lib/connector_impl.h', 162 'shell/public/cpp/lib/connector_impl.h',
160 'shell/public/cpp/lib/identity.cc', 163 'shell/public/cpp/lib/identity.cc',
161 'shell/public/cpp/lib/interface_factory_binder.h', 164 'shell/public/cpp/lib/interface_factory_binder.h',
162 'shell/public/cpp/lib/interface_registry.cc', 165 'shell/public/cpp/lib/interface_registry.cc',
163 'shell/public/cpp/lib/message_loop_ref.cc', 166 'shell/public/cpp/lib/message_loop_ref.cc',
164 'shell/public/cpp/lib/names.cc', 167 'shell/public/cpp/lib/names.cc',
165 'shell/public/cpp/lib/shell_client.cc', 168 'shell/public/cpp/lib/shell_client.cc',
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 '../build/isolate.gypi', 333 '../build/isolate.gypi',
331 ], 334 ],
332 'sources': [ 335 'sources': [
333 'mojo_common_unittests.isolate', 336 'mojo_common_unittests.isolate',
334 ], 337 ],
335 }, 338 },
336 ], 339 ],
337 }], 340 }],
338 ] 341 ]
339 } 342 }
OLDNEW
« no previous file with comments | « no previous file | mojo/services/catalog/builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698