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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/shell/shell.gyp ('k') | services/tracing/tracing.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/shell/shell_public.gyp
diff --git a/services/shell/shell_public.gyp b/services/shell/shell_public.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..2d4a03403acb3cef2da6c8bf692d1a899676d212
--- /dev/null
+++ b/services/shell/shell_public.gyp
@@ -0,0 +1,75 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'shell_interfaces',
+ 'type': 'none',
+ 'variables': {
+ 'mojom_files': [
+ '../catalog/public/interfaces/catalog.mojom',
+ 'public/interfaces/capabilities.mojom',
+ 'public/interfaces/connector.mojom',
+ 'public/interfaces/interface_provider.mojom',
+ 'public/interfaces/shell.mojom',
+ 'public/interfaces/shell_client.mojom',
+ 'public/interfaces/shell_client_factory.mojom',
+ 'public/interfaces/shell_resolver.mojom',
+ ],
+ 'mojom_typemaps': [
+ '<(DEPTH)/mojo/common/common_custom_types.typemap',
+ ],
+ },
+ 'includes': [ '../../mojo/mojom_bindings_generator_explicit.gypi' ],
+ 'dependencies': [
+ '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_custom_types_mojom',
+ ],
+ 'export_dependent_settings': [
+ '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_custom_types_mojom',
+ ],
+ },
+ {
+ # GN version: //services/shell/public/cpp
+ 'target_name': 'shell_public',
+ 'type': 'static_library',
+ 'sources': [
+ 'public/cpp/application_runner.h',
+ 'public/cpp/capabilities.h',
+ 'public/cpp/connect.h',
+ 'public/cpp/connection.h',
+ 'public/cpp/connector.h',
+ 'public/cpp/identity.h',
+ 'public/cpp/initialize_base_and_icu.cc',
+ 'public/cpp/initialize_base_and_icu.h',
+ 'public/cpp/interface_binder.h',
+ 'public/cpp/interface_factory.h',
+ 'public/cpp/interface_factory_impl.h',
+ 'public/cpp/interface_registry.h',
+ 'public/cpp/lib/application_runner.cc',
+ 'public/cpp/lib/capabilities.cc',
+ 'public/cpp/lib/connection_impl.cc',
+ 'public/cpp/lib/connection_impl.h',
+ 'public/cpp/lib/connector_impl.cc',
+ 'public/cpp/lib/connector_impl.h',
+ 'public/cpp/lib/identity.cc',
+ 'public/cpp/lib/interface_factory_binder.h',
+ 'public/cpp/lib/interface_registry.cc',
+ 'public/cpp/lib/names.cc',
+ 'public/cpp/lib/shell_client.cc',
+ 'public/cpp/lib/shell_connection.cc',
+ 'public/cpp/lib/shell_connection_ref.cc',
+ 'public/cpp/names.h',
+ 'public/cpp/shell_client.h',
+ 'public/cpp/shell_connection.h',
+ 'public/cpp/shell_connection_ref.h',
+ ],
+ 'dependencies': [
+ 'shell_interfaces',
+ '<(DEPTH)/base/base.gyp:base_i18n',
+ '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings',
+ ],
+ },
+ ],
+}
« 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