OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
(...skipping 12 matching lines...) Expand all Loading... |
23 'sources': [ | 23 'sources': [ |
24 'cross/serializer.cc', | 24 'cross/serializer.cc', |
25 'cross/serializer.h', | 25 'cross/serializer.h', |
26 'cross/serializer_binary.cc', | 26 'cross/serializer_binary.cc', |
27 'cross/serializer_binary.h', | 27 'cross/serializer_binary.h', |
28 'cross/version.h', | 28 'cross/version.h', |
29 ], | 29 ], |
30 }, | 30 }, |
31 { | 31 { |
32 'target_name': 'o3dSerializerTest', | 32 'target_name': 'o3dSerializerTest', |
33 'type': 'static_library', | 33 'type': 'none', |
34 'sources': [ | 34 'dependencies': [ |
35 'cross/serializer_test.cc', | 35 'o3dSerializer', |
36 ], | 36 ], |
| 37 'direct_dependent_settings': { |
| 38 'sources': [ |
| 39 'cross/serializer_test.cc', |
| 40 ], |
| 41 }, |
37 }, | 42 }, |
38 ], | 43 ], |
39 } | 44 } |
OLD | NEW |