Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / native_client / tests / unittests / trusted / bits / build.scons
1 # -*- python -*-
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6
7 Import('env')
8
9 gtest_env = env.MakeGTestEnv()
10
11 bits_test_exe = gtest_env.ComponentProgram(
12     'bits_test',
13     'bits_test.cc')
14
15 node = gtest_env.CommandTest(
16     'bits_test.out',
17     command=[bits_test_exe])
18 env.AddNodeToTestSuite(node, ['small_tests'], 'run_bits_test')