| OLD | NEW |
| (Empty) | |
| 1 # -*- python -*- |
| 2 # Copyright 2013 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can |
| 4 # be found in the LICENSE file. |
| 5 |
| 6 Import('env') |
| 7 |
| 8 serialization_inputs = [ |
| 9 'serialization.cc', |
| 10 ] |
| 11 |
| 12 serialization_inputs = env.DualObject(serialization_inputs) |
| 13 |
| 14 env.DualLibrary('serialization', serialization_inputs) |
| 15 |
| 16 serialization_test_exe = env.ComponentProgram( |
| 17 'serialization_test', |
| 18 ['serialization_test.cc'], |
| 19 EXTRA_LIBS=['serialization']) |
| 20 |
| 21 node = env.CommandTest( |
| 22 'serialization_test.out', |
| 23 command=[serialization_test_exe]) |
| 24 |
| 25 env.AddNodeToTestSuite(node, ['small_tests'], 'run_serialization_test') |
| OLD | NEW |