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

Unified Diff: third_party/mojo/mojo_public.gyp

Issue 1182303012: Componentize html_viewer's MessagePort (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: header-only target types: static_library -> none Created 5 years, 6 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 | « components/message_port/web_message_port_channel_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/mojo/mojo_public.gyp
diff --git a/third_party/mojo/mojo_public.gyp b/third_party/mojo/mojo_public.gyp
index 042289d2b734697e891e280a90093a2e411eaab2..0a32d67e9d4427f42816ff81e7c6559d0705b39c 100644
--- a/third_party/mojo/mojo_public.gyp
+++ b/third_party/mojo/mojo_public.gyp
@@ -37,7 +37,6 @@
'type': 'none',
},
{
- # GN version: //mojo/public/c/system
'target_name': 'mojo_system',
'type': 'static_library',
'defines': [
@@ -55,6 +54,18 @@
],
},
'sources': [
+ 'src/mojo/public/platform/native/system_thunks.cc',
+ 'src/mojo/public/platform/native/system_thunks.h',
+ ],
+ 'dependencies': [
+ 'mojo_system_headers',
+ ],
+ },
+ {
+ # GN version: //mojo/public/c/system
+ 'target_name': 'mojo_system_headers',
+ 'type': 'none',
+ 'sources': [
'src/mojo/public/c/system/buffer.h',
'src/mojo/public/c/system/core.h',
'src/mojo/public/c/system/data_pipe.h',
@@ -63,8 +74,23 @@
'src/mojo/public/c/system/message_pipe.h',
'src/mojo/public/c/system/system_export.h',
'src/mojo/public/c/system/types.h',
- 'src/mojo/public/platform/native/system_thunks.cc',
- 'src/mojo/public/platform/native/system_thunks.h',
+ ],
+ },
+ {
+ # GN version: //mojo/public/cpp/system
+ 'target_name': 'mojo_system_cpp_headers',
+ 'type': 'none',
+ 'sources': [
+ 'src/mojo/public/cpp/system/buffer.h',
+ 'src/mojo/public/cpp/system/core.h',
+ 'src/mojo/public/cpp/system/data_pipe.h',
+ 'src/mojo/public/cpp/system/functions.h',
+ 'src/mojo/public/cpp/system/handle.h',
+ 'src/mojo/public/cpp/system/macros.h',
+ 'src/mojo/public/cpp/system/message_pipe.h',
+ ],
+ 'dependencies': [
+ 'mojo_system_headers',
],
},
{
« no previous file with comments | « components/message_port/web_message_port_channel_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698