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

Unified Diff: mojo/mojo.gyp

Issue 23629032: mojo: MessageBuilder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compilation error. Created 7 years, 3 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 | « build/all.gyp ('k') | mojo/public/libs/message/README » ('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
new file mode 100644
index 0000000000000000000000000000000000000000..e323d28810962ef494114626d4fe279bd768f9d4
--- /dev/null
+++ b/mojo/mojo.gyp
@@ -0,0 +1,49 @@
+# Copyright 2013 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.
+
+{
+ 'variables': {
+ 'chromium_code': 1, # Use higher warning level.
+ },
+ 'target_defaults': {
+ 'defines': ['MOJO_IMPLEMENTATION'],
+ },
+ 'targets': [
+ {
+ 'target_name': 'mojo',
+ 'type': 'none',
+ 'dependencies': [
+ 'mojo_message',
+ ],
+ },
+ {
+ 'target_name': 'mojo_message',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'public/libs/message/message.cc',
+ 'public/libs/message/message.h',
+ 'public/libs/message/message_builder.cc',
+ 'public/libs/message/message_builder.h',
+ ],
+ },
+ {
+ 'target_name': 'mojo_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ 'mojo_message',
+ '../base/base.gyp:run_all_unittests',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'include_dirs': [
+ '..'
+ ],
+ 'sources': [
+ 'public/libs/message/message_unittest.cc',
+ ],
+ },
+ ],
+}
« no previous file with comments | « build/all.gyp ('k') | mojo/public/libs/message/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698