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

Side by Side 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, 9 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 # Copyright (c) 2013 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'includes': [
7 '../../../build/common.gypi',
8 ],
9 'target_defaults': {
10 'variables': {
11 'target_base': 'none',
12 },
13 'target_conditions': [
14 ['target_base=="serialization"', {
15 'sources': [
16 'serialization.cc',
17 'serialization.h',
18 ],
19 }],
20 ],
21 },
22 'targets': [
23 {
24 'target_name': 'serialization',
25 'type': 'static_library',
26 'variables': {
27 'target_base': 'serialization',
28 },
29 }
30 ],
31 'conditions': [
32 ['OS=="win" and target_arch=="ia32"', {
33 'targets': [
34 {
35 'target_name': 'serialization64',
36 'type': 'static_library',
37 'variables': {
38 'target_base': 'serialization',
39 'win_target': 'x64'
40 },
41 }
42 ]
43 }],
44 ],
45 }
OLDNEW
« 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