| 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'
|
| + },
|
| + }
|
| + ]
|
| + }],
|
| + ],
|
| +}
|
|
|