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

Unified Diff: src/shared/serialization/build.scons

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 | « site_scons/site_tools/library_deps.py ('k') | src/shared/serialization/serialization.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/serialization/build.scons
diff --git a/src/shared/serialization/build.scons b/src/shared/serialization/build.scons
new file mode 100644
index 0000000000000000000000000000000000000000..a1c92462dce54843cceb2224aad1096c8b825883
--- /dev/null
+++ b/src/shared/serialization/build.scons
@@ -0,0 +1,25 @@
+# -*- python -*-
+# Copyright 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.
+
+Import('env')
+
+serialization_inputs = [
+ 'serialization.cc',
+]
+
+serialization_inputs = env.DualObject(serialization_inputs)
+
+env.DualLibrary('serialization', serialization_inputs)
+
+serialization_test_exe = env.ComponentProgram(
+ 'serialization_test',
+ ['serialization_test.cc'],
+ EXTRA_LIBS=['serialization'])
+
+node = env.CommandTest(
+ 'serialization_test.out',
+ command=[serialization_test_exe])
+
+env.AddNodeToTestSuite(node, ['small_tests'], 'run_serialization_test')
« no previous file with comments | « site_scons/site_tools/library_deps.py ('k') | src/shared/serialization/serialization.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698