diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/using_gtest.scons | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/using_gtest.scons b/testing/using_gtest.scons new file mode 100644 index 0000000..a6bc10f --- /dev/null +++ b/testing/using_gtest.scons @@ -0,0 +1,22 @@ +# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +__doc__ = """ +Settings for other components using the gtest library. +""" + +Import("env") + +env.Append( + CPPPATH = [ + '$GTEST_DIR/include', + '$GTEST_DIR', + ], + CPPDEFINES = [ + 'UNIT_TEST', + ], + LIBS = [ + 'gtest', + ], +) |