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

Unified Diff: src/shared/serialization/serialization.gyp

Issue 12316093: Serialization library. Useful for sending more complex data in RPCs. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: added missing NACL_WUR and CHECKs detected by clang Created 7 years, 10 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 | « src/shared/serialization/serialization.cc ('k') | src/shared/serialization/serialization_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/serialization/serialization.gyp
diff --git a/src/shared/serialization/serialization.gyp b/src/shared/serialization/serialization.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..7442f27603e079629e6e7bf8aba15dca56a9bc12
--- /dev/null
+++ b/src/shared/serialization/serialization.gyp
@@ -0,0 +1,45 @@
+# Copyright (c) 2013 The Native Client Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'includes': [
+ '../../../build/common.gypi',
+ ],
+ 'target_defaults': {
+ 'variables': {
+ 'target_base': 'none',
+ },
+ 'target_conditions': [
+ ['target_base=="serialization"', {
+ 'sources': [
+ 'serialization.cc',
+ 'serialization.h',
+ ],
+ }],
+ ],
+ },
+ 'targets': [
+ {
+ 'target_name': 'serialization',
+ 'type': 'static_library',
+ 'variables': {
+ 'target_base': 'serialization',
+ },
+ }
+ ],
+ 'conditions': [
+ ['OS=="win" and target_arch=="ia32"', {
+ 'targets': [
+ {
+ 'target_name': 'serialization64',
+ 'type': 'static_library',
+ 'variables': {
+ 'target_base': 'serialization',
+ 'win_target': 'x64'
+ },
+ }
+ ]
+ }],
+ ],
+}
« no previous file with comments | « src/shared/serialization/serialization.cc ('k') | src/shared/serialization/serialization_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698