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

Side by Side 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: fixed conditional compilation control for fp support 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # -*- python -*-
2 # Copyright 2013 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can
4 # be found in the LICENSE file.
5
6 Import('env')
7
8 serialization_inputs = [
9 'serialization.cc',
10 ]
11
12 serialization_inputs = env.DualObject(serialization_inputs)
13
14 env.DualLibrary('serialization', serialization_inputs)
15
16 serialization_test_exe = env.ComponentProgram(
17 'serialization_test',
18 ['serialization_test.cc'],
19 EXTRA_LIBS=['serialization'])
20
21 node = env.CommandTest(
22 'serialization_test.out',
23 command=[serialization_test_exe])
24
25 env.AddNodeToTestSuite(node, ['small_tests'], 'run_serialization_test')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698