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

Unified Diff: mojo/mojo.gyp

Issue 25895002: Simple shell that loads a dll and calls an entrypoint function passing in a handle to a pipe create… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | « no previous file | mojo/public/system/core.h » ('j') | mojo/public/system/core.h » ('J')
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 567452f54381fc2bc68bb161b229884f365595df..7cbdbd6af950a40d7e726f6dd29f671884cd9a89 100644
--- a/mojo/mojo.gyp
+++ b/mojo/mojo.gyp
@@ -64,10 +64,13 @@
{
'target_name': 'mojo_system',
# TODO(vtl): This should probably be '<(component)'; make it work.
- 'type': 'static_library',
+ 'type': '<(component)',
'dependencies': [
'../base/base.gyp:base',
],
+ 'defines': [
+ 'SYSTEM_IMPLEMENTATION',
Ben Goodger (Google) 2013/10/03 17:45:18 MOJO_SYSTEM_IMPLEMENTATION?
+ ],
'sources': [
'public/system/core.h',
'system/core.cc',
@@ -118,5 +121,31 @@
'system/waiter_unittest.cc',
],
},
+ {
+ 'target_name': 'mojo_shell',
+ 'type': 'executable',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'mojo_system'
+ ],
+ 'sources': [
+ 'shell/app_container.cc',
+ 'shell/app_container.h',
+ 'shell/shell.cc',
+ 'shell/switches.cc',
+ 'shell/switches.h',
+ ],
+ },
+ {
+ 'target_name': 'sample_app',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'mojo_system',
+ ],
+ 'sources': [
+ 'shell/sample_app.cc',
+ ],
+ },
],
}
« no previous file with comments | « no previous file | mojo/public/system/core.h » ('j') | mojo/public/system/core.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698