| OLD | NEW |
| (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 } |
| OLD | NEW |