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

Unified Diff: mojo/mojo.gyp

Issue 23629032: mojo: MessageBuilder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add support for a string field type. 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
Index: mojo/mojo.gyp
diff --git a/mojo/mojo.gyp b/mojo/mojo.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..0a03443940f306799d090671bf82cd2383e44806
--- /dev/null
+++ b/mojo/mojo.gyp
@@ -0,0 +1,43 @@
+# Copyright (c) 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_ipc',
+ ],
+ },
+ {
+ 'target_name': 'mojo_ipc',
+ 'type': 'static_library',
+ 'includes': [
+ 'mojo_ipc.gypi',
+ ],
+ },
+ {
+ 'target_name': 'mojo_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ 'mojo_ipc',
+ '../base/base.gyp:run_all_unittests',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'include_dirs': [
+ '..'
+ ],
+ 'sources': [
+ 'ipc/message/ipc_message_unittest.cc',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698