1*9880d681SAndroid Build Coastguard Worker // Copyright 2008, Google Inc. 2*9880d681SAndroid Build Coastguard Worker // All rights reserved. 3*9880d681SAndroid Build Coastguard Worker // 4*9880d681SAndroid Build Coastguard Worker // Redistribution and use in source and binary forms, with or without 5*9880d681SAndroid Build Coastguard Worker // modification, are permitted provided that the following conditions are 6*9880d681SAndroid Build Coastguard Worker // met: 7*9880d681SAndroid Build Coastguard Worker // 8*9880d681SAndroid Build Coastguard Worker // * Redistributions of source code must retain the above copyright 9*9880d681SAndroid Build Coastguard Worker // notice, this list of conditions and the following disclaimer. 10*9880d681SAndroid Build Coastguard Worker // * Redistributions in binary form must reproduce the above 11*9880d681SAndroid Build Coastguard Worker // copyright notice, this list of conditions and the following disclaimer 12*9880d681SAndroid Build Coastguard Worker // in the documentation and/or other materials provided with the 13*9880d681SAndroid Build Coastguard Worker // distribution. 14*9880d681SAndroid Build Coastguard Worker // * Neither the name of Google Inc. nor the names of its 15*9880d681SAndroid Build Coastguard Worker // contributors may be used to endorse or promote products derived from 16*9880d681SAndroid Build Coastguard Worker // this software without specific prior written permission. 17*9880d681SAndroid Build Coastguard Worker // 18*9880d681SAndroid Build Coastguard Worker // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19*9880d681SAndroid Build Coastguard Worker // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20*9880d681SAndroid Build Coastguard Worker // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 21*9880d681SAndroid Build Coastguard Worker // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22*9880d681SAndroid Build Coastguard Worker // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23*9880d681SAndroid Build Coastguard Worker // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 24*9880d681SAndroid Build Coastguard Worker // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 25*9880d681SAndroid Build Coastguard Worker // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26*9880d681SAndroid Build Coastguard Worker // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27*9880d681SAndroid Build Coastguard Worker // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28*9880d681SAndroid Build Coastguard Worker // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29*9880d681SAndroid Build Coastguard Worker // 30*9880d681SAndroid Build Coastguard Worker // Author: [email protected] (Markus Heule) 31*9880d681SAndroid Build Coastguard Worker // 32*9880d681SAndroid Build Coastguard Worker // Google C++ Testing Framework (Google Test) 33*9880d681SAndroid Build Coastguard Worker // 34*9880d681SAndroid Build Coastguard Worker // Sometimes it's desirable to build Google Test by compiling a single file. 35*9880d681SAndroid Build Coastguard Worker // This file serves this purpose. 36*9880d681SAndroid Build Coastguard Worker 37*9880d681SAndroid Build Coastguard Worker // This line ensures that gtest.h can be compiled on its own, even 38*9880d681SAndroid Build Coastguard Worker // when it's fused. 39*9880d681SAndroid Build Coastguard Worker #include "gtest/gtest.h" 40*9880d681SAndroid Build Coastguard Worker 41*9880d681SAndroid Build Coastguard Worker // The following lines pull in the real gtest *.cc files. 42*9880d681SAndroid Build Coastguard Worker #include "src/gtest.cc" 43*9880d681SAndroid Build Coastguard Worker #include "src/gtest-death-test.cc" 44*9880d681SAndroid Build Coastguard Worker #include "src/gtest-filepath.cc" 45*9880d681SAndroid Build Coastguard Worker #include "src/gtest-port.cc" 46*9880d681SAndroid Build Coastguard Worker #include "src/gtest-printers.cc" 47*9880d681SAndroid Build Coastguard Worker #include "src/gtest-test-part.cc" 48*9880d681SAndroid Build Coastguard Worker #include "src/gtest-typed-test.cc" 49