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

Unified Diff: mojo/mojo.gyp

Issue 231353002: Make mojo_system static and mojo_system_impl a component, never use both (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix the mac loader path dependencies Created 6 years, 8 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 | « mojo/embedder/test_embedder.cc ('k') | mojo/mojo_apps.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/mojo.gyp
diff --git a/mojo/mojo.gyp b/mojo/mojo.gyp
index c721cfaab6c04ae1c77d47ef0ac5965f7e21d041..27a2efe32134a3195e73ca9b9cc65736e0e709ee 100644
--- a/mojo/mojo.gyp
+++ b/mojo/mojo.gyp
@@ -36,6 +36,7 @@
'mojo_js',
'mojo_js_unittests',
'mojo_message_generator',
+ 'mojo_native_viewport_service',
'mojo_pepper_container_app',
'mojo_public_test_utils',
'mojo_public_bindings_unittests',
@@ -70,7 +71,6 @@
'../base/base.gyp:base',
'../base/base.gyp:test_support_base',
'../testing/gtest.gyp:gtest',
- 'mojo_system',
'mojo_system_impl',
'mojo_test_support',
'mojo_test_support_impl',
@@ -84,7 +84,6 @@
'type': 'static_library',
'dependencies': [
'../base/base.gyp:test_support_base',
- 'mojo_system',
'mojo_system_impl',
'mojo_test_support',
'mojo_test_support_impl',
@@ -97,12 +96,12 @@
'target_name': 'mojo_system_impl',
'type': '<(component)',
'dependencies': [
- 'mojo_system',
'../base/base.gyp:base',
'../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
],
'defines': [
'MOJO_SYSTEM_IMPL_IMPLEMENTATION',
+ 'MOJO_SYSTEM_IMPLEMENTATION',
],
'sources': [
'embedder/embedder.cc',
@@ -119,8 +118,8 @@
'system/channel.cc',
'system/channel.h',
'system/constants.h',
- 'system/core_impl.cc',
- 'system/core_impl.h',
+ 'system/core.cc',
+ 'system/core.h',
'system/data_pipe.cc',
'system/data_pipe.h',
'system/data_pipe_consumer_dispatcher.cc',
@@ -129,6 +128,7 @@
'system/data_pipe_producer_dispatcher.h',
'system/dispatcher.cc',
'system/dispatcher.h',
+ 'system/entrypoints.cc',
'system/handle_table.cc',
'system/handle_table.h',
'system/local_data_pipe.cc',
@@ -179,16 +179,16 @@
'target_name': 'mojo_system_unittests',
'type': 'executable',
'dependencies': [
+ '../base/base.gyp:base',
'../base/base.gyp:run_all_unittests',
'../testing/gtest.gyp:gtest',
'mojo_common_test_support',
- 'mojo_system',
'mojo_system_impl',
],
'sources': [
'embedder/embedder_unittest.cc',
'embedder/platform_channel_pair_posix_unittest.cc',
- 'system/core_impl_unittest.cc',
+ 'system/core_unittest.cc',
'system/core_test_base.cc',
'system/core_test_base.h',
'system/data_pipe_unittest.cc',
@@ -223,6 +223,7 @@
'mojo_gles2',
'mojo_gles2_bindings',
'mojo_environment_chromium',
+ 'mojo_system_impl',
],
'defines': [
'MOJO_GLES2_IMPL_IMPLEMENTATION',
@@ -257,7 +258,11 @@
'dependencies': [
'../base/base.gyp:base',
'../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
- 'mojo_system',
+ 'mojo_system_impl',
+ ],
+ 'export_dependent_settings': [
+ '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
+ 'mojo_system_impl',
],
'sources': [
'common/common_type_converters.cc',
@@ -280,7 +285,6 @@
'../base/base.gyp:base',
'../base/base.gyp:test_support_base',
'../testing/gtest.gyp:gtest',
- 'mojo_system',
'mojo_system_impl',
],
'sources': [
@@ -304,8 +308,6 @@
'mojo_common_test_support',
'mojo_public_test_utils',
'mojo_run_all_unittests',
- 'mojo_system',
- 'mojo_system_impl',
],
'sources': [
'common/common_type_converters_unittest.cc',
@@ -368,6 +370,7 @@
'mojo_common_lib',
'mojo_environment_chromium',
'mojo_shell_bindings',
+ 'mojo_system_impl',
],
'sources': [
'service_manager/service_loader.h',
@@ -405,7 +408,6 @@
'mojo_gles2_impl',
'mojo_service_manager',
'mojo_shell_bindings',
- 'mojo_system',
'mojo_system_impl',
'mojo_native_viewport_service',
'mojo_spy',
@@ -466,7 +468,6 @@
'mojo_environment_chromium',
'mojo_service_manager',
'mojo_shell_lib',
- 'mojo_system',
'mojo_system_impl',
],
'sources': [
@@ -486,7 +487,6 @@
'mojo_run_all_unittests',
'mojo_service_manager',
'mojo_shell_client',
- 'mojo_system',
],
'variables': {
'mojom_base_output_dir': 'mojo',
@@ -505,13 +505,11 @@
'../gin/gin.gyp:gin',
'../v8/tools/gyp/v8.gyp:v8',
'mojo_common_lib',
- 'mojo_system',
],
'export_dependent_settings': [
'../base/base.gyp:base',
'../gin/gin.gyp:gin',
'mojo_common_lib',
- 'mojo_system',
],
'sources': [
'bindings/js/core.cc',
@@ -546,7 +544,6 @@
'mojo_bindings',
'mojo_common_lib',
'mojo_environment_chromium',
- 'mojo_system',
'mojo_system_impl',
],
'sources': [
« no previous file with comments | « mojo/embedder/test_embedder.cc ('k') | mojo/mojo_apps.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698