OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2009 The Chromium 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 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 9 'includes': [ |
| 10 '../build/common.gypi', |
| 11 ], |
| 12 'target_defaults': { |
| 13 'include_dirs': [ |
| 14 '..', |
| 15 '../..', |
| 16 '../../<(gtestdir)', |
| 17 ], |
| 18 }, |
| 19 'targets': [ |
| 20 { |
| 21 'target_name': 'o3dSerializer', |
| 22 'type': 'static_library', |
| 23 'sources': [ |
| 24 'cross/serializer.cc', |
| 25 'cross/serializer.h', |
| 26 'cross/serializer_binary.cc', |
| 27 'cross/serializer_binary.h', |
| 28 'cross/version.h', |
| 29 ], |
| 30 }, |
| 31 { |
| 32 'target_name': 'o3dSerializerTest', |
| 33 'type': 'static_library', |
| 34 'sources': [ |
| 35 'cross/serializer_test.cc', |
| 36 ], |
| 37 }, |
| 38 ], |
| 39 } |
OLD | NEW |