/third_party/node/deps/googletest/ |
D | googletest.gyp | 4 'target_name': 'gtest', 7 'include/gtest/gtest-assertion-result.h', 8 'include/gtest/gtest-death-test.h', 9 'include/gtest/gtest-matchers.h', 10 'include/gtest/gtest-message.h', 11 'include/gtest/gtest-param-test.h', 12 'include/gtest/gtest-printers.h', 13 'include/gtest/gtest-spi.h', 14 'include/gtest/gtest-test-part.h', 15 'include/gtest/gtest-typed-test.h', [all …]
|
/third_party/googletest/ |
D | BUILD.gn | 35 "googletest/include/gtest/gtest-death-test.h", 36 "googletest/include/gtest/gtest-matchers.h", 37 "googletest/include/gtest/gtest-message.h", 38 "googletest/include/gtest/gtest-param-test.h", 39 "googletest/include/gtest/gtest-printers.h", 40 "googletest/include/gtest/gtest-test-part.h", 41 "googletest/include/gtest/gtest-typed-test.h", 42 "googletest/include/gtest/gtest_pred_impl.h", 43 "googletest/include/gtest/gtest_prod.h", 44 "googletest/include/gtest/hwext/gtest-ext.h", [all …]
|
D | BUILD.bazel | 75 hdrs = ["googletest/include/gtest/gtest_prod.h"], 81 name = "gtest", 86 "googletest/include/gtest/**/*.h", 91 "googletest/src/gtest-all.cc", 98 "googletest/include/gtest/*.h", 159 deps = [":gtest"], 210 deps = [":gtest"], 217 deps = [":gtest"],
|
/third_party/node/deps/v8/third_party/googletest/ |
D | BUILD.gn | 12 # necessary. The definition in gtest-port.h at the time of this writing 16 # In order to allow regex matches in gtest to be shared between Windows 17 # and other systems, we tell gtest to always use its internal engine. 23 # Prevents gtest from including both <tr1/tuple> and <tuple>. 49 # Do NOT depend on this directly. Use //testing/gtest instead. 51 source_set("gtest") { 54 "src/googletest/include/gtest/gtest-assertion-result.h", 55 "src/googletest/include/gtest/gtest-death-test.h", 56 "src/googletest/include/gtest/gtest-matchers.h", 57 "src/googletest/include/gtest/gtest-message.h", [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/ldso/ldso_gtest/libs/ |
D | BUILD.gn | 86 part_name = "libc-gtest-lib" 95 part_name = "libc-gtest-lib" 108 part_name = "libc-gtest-lib" 117 part_name = "libc-gtest-lib" 126 part_name = "libc-gtest-lib" 135 part_name = "libc-gtest-lib" 148 part_name = "libc-gtest-lib" 161 part_name = "libc-gtest-lib" 170 part_name = "libc-gtest-lib" 179 part_name = "libc-gtest-lib" [all …]
|
/third_party/googletest/googletest/ |
D | CMakeLists.txt | 18 option(gtest_build_tests "Build all of gtest's own tests." OFF) 20 option(gtest_build_samples "Build gtest's sample programs." OFF) 22 option(gtest_disable_pthreads "Disable uses of pthreads in gtest." OFF) 26 "Build gtest with internal symbols hidden in shared libraries." 51 project(gtest VERSION ${GOOGLETEST_VERSION} LANGUAGES CXX C) project 62 if(CMAKE_PROJECT_NAME STREQUAL "gtest" OR CMAKE_PROJECT_NAME STREQUAL "googletest-distribution") 120 # Defines the gtest & gtest_main libraries. User tests should link 124 # are used for other targets, to ensure that gtest can be compiled by a user 126 cxx_library(gtest "${cxx_strict}" src/gtest-all.cc) 127 set_target_properties(gtest PROPERTIES VERSION ${GOOGLETEST_VERSION}) [all …]
|
/third_party/googletest/googlemock/scripts/ |
D | fuse_gmock_files.py | 77 import fuse_gtest_files as gtest # pylint:disable=g-import-not-at-top namespace 108 gtest.ValidateGTestRootDir(GetGTestRootDir(gmock_root)) 109 gtest.VerifyFileExists(gmock_root, GMOCK_H_SEED) 110 gtest.VerifyFileExists(gmock_root, GMOCK_ALL_CC_SEED) 122 gtest.VerifyOutputFile(output_dir, gtest.GTEST_H_OUTPUT) 123 gtest.VerifyOutputFile(output_dir, GMOCK_H_OUTPUT) 124 gtest.VerifyOutputFile(output_dir, GMOCK_GTEST_ALL_CC_OUTPUT) 152 m = gtest.INCLUDE_GTEST_FILE_REGEX.match(line) 159 if gtest.GTEST_H_SEED not in processed_files: 160 processed_files.add(gtest.GTEST_H_SEED) [all …]
|
/third_party/node/deps/v8/testing/gtest/ |
D | BUILD.gn | 5 import("//build_overrides/gtest.gni") 20 static_library("gtest") { 24 "include/gtest/gtest-death-test.h", 25 "include/gtest/gtest-message.h", 26 "include/gtest/gtest-param-test.h", 27 "include/gtest/gtest-spi.h", 28 "include/gtest/gtest.h", 29 "include/gtest/gtest_prod.h", 43 public_deps = [ "//third_party/googletest:gtest" ]
|
/third_party/libphonenumber/tools/cpp/ |
D | gtest.cmake | 27 find_path (GTEST_INCLUDE_DIR gtest/gtest.h) 30 "Can't find Google C++ Testing Framework: can't locate gtest/gtest.h. " 31 "Please read the README and also take a look at tools/cpp/gtest.cmake.") 36 find_library (GTEST_LIB gtest) 39 find_path (GTEST_SOURCE_DIR src/gtest-all.cc 40 HINTS /usr/src/gtest /usr/local/src/gtest) 41 add_library (gtest STATIC ${GTEST_SOURCE_DIR}/src/gtest-all.cc) target 44 set (GTEST_LIB gtest PARENT_SCOPE)
|
/third_party/googletest/googletest/scripts/test/ |
D | Makefile | 14 FUSED_GTEST_H = $(FUSED_GTEST_DIR)/gtest/gtest.h 15 FUSED_GTEST_ALL_CC = $(FUSED_GTEST_DIR)/gtest/gtest-all.cc 45 gtest-all.o : $(FUSED_GTEST_H) $(FUSED_GTEST_ALL_CC) 46 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(FUSED_GTEST_DIR)/gtest/gtest-all.cc 58 sample1_unittest : sample1.o sample1_unittest.o gtest-all.o gtest_main.o
|
/third_party/googletest/googletest/test/ |
D | BUILD.bazel | 39 #on windows exclude gtest-tuple.h 45 "gtest-*.cc", 48 "googletest/include/gtest/**/*.h", 51 "gtest-unittest-api_test.cc", 52 "googletest/src/gtest-all.cc", 54 "gtest-death-test_ex_test.cc", 55 "gtest-listener_test.cc", 56 "gtest-unittest-api_test.cc", 116 deps = ["//:gtest"], 128 name = "gtest-unittest-api_test", [all …]
|
/third_party/libphonenumber/cpp/test/ |
D | BUILD.gn | 51 "//third_party/googletest/googletest/src/gtest-death-test.cc", 52 "//third_party/googletest/googletest/src/gtest-filepath.cc", 53 "//third_party/googletest/googletest/src/gtest-internal-inl.h", 54 "//third_party/googletest/googletest/src/gtest-port.cc", 55 "//third_party/googletest/googletest/src/gtest-printers.cc", 56 "//third_party/googletest/googletest/src/gtest-test-part.cc", 57 "//third_party/googletest/googletest/src/gtest-typed-test.cc", 58 "//third_party/googletest/googletest/src/gtest.cc", 60 "//third_party/googletest/googletest/src/hwext/gtest-ext.cc", 61 "//third_party/googletest/googletest/src/hwext/gtest-filter.cc", [all …]
|
/third_party/openh264/build/ |
D | gtest-targets.mk | 4 GTEST_SRCDIR=gtest/googletest 6 $(GTEST_SRCDIR)/src/gtest-all.cc\ 15 $(LIBPREFIX)gtest.$(LIBSUFFIX): $(GTEST_OBJS) 19 libraries: $(LIBPREFIX)gtest.$(LIBSUFFIX) 20 LIBRARIES += $(LIBPREFIX)gtest.$(LIBSUFFIX)
|
D | mktargets.sh | 17 …ild/mktargets.py --directory gtest/googletest --library gtest --out build/gtest-targets.mk --cpp-s…
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/test/ |
D | CMakeLists.txt | 4 add_library(gtest STATIC ${GOOGLETEST_ROOT}/src/gtest_main.cc ${GOOGLETEST_ROOT}/src/gtest-all.cc) target 5 target_include_directories(gtest PRIVATE ${GOOGLETEST_ROOT}) 6 target_include_directories(gtest PUBLIC ${GOOGLETEST_ROOT}/include) 12 target_link_libraries(testRhythmGame gtest)
|
/third_party/cef/tests/gtest/ |
D | CMakeLists.txt.in | 8 src/gtest-all.cc 21 # The gtest-all.cc file uses #include "gtest/gtest.h" 24 # In order to allow regex matches in gtest to be shared between Windows 25 # and other systems we tell gtest to always use it's internal engine.
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | BUILD.gn | 308 "gtest/cjpeg-gtest-wrapper.cpp", 309 "gtest/djpeg-gtest-wrapper.cpp", 310 "gtest/gtest-utils.cpp", 311 "gtest/jpegtran-gtest-wrapper.cpp", 312 "gtest/tjbench-gtest-wrapper.cpp", 313 "gtest/tjunittest-gtest-wrapper.cpp", 328 "${skia_root_dir}/testing/gtest", 329 "${skia_root_dir}/testing/gtest:gtest_main", 342 "${skia_third_party_dir}/googletest/src/googletest/include/gtest",
|
/third_party/googletest/googletest/include/gtest/internal/custom/ |
D | README.md | 5 ## Header `gtest.h` 14 ## Header `gtest-port.h` 41 ## Header `gtest-printers.h` 43 * See documentation at `gtest/gtest-printers.h` for details on how to define a
|
/third_party/node/deps/googletest/include/gtest/internal/custom/ |
D | README.md | 5 ## Header `gtest.h` 14 ## Header `gtest-port.h` 41 ## Header `gtest-printers.h` 43 * See documentation at `gtest/gtest-printers.h` for details on how to define a
|
/third_party/openh264/test/ |
D | meson.build | 4 …gtest_main_dep = dependency('gtest', main : true, fallback: ['gtest', 'gtest_main_dep'], required:… 5 gtest_dep = dependency('gtest', fallback: ['gtest', 'gtest_dep'], required: build_tests)
|
/third_party/skia/third_party/externals/oboe/tests/ |
D | CMakeLists.txt | 14 add_library(gtest STATIC ${GOOGLETEST_ROOT}/src/gtest_main.cc ${GOOGLETEST_ROOT}/src/gtest-all.cc) target 15 target_include_directories(gtest PRIVATE ${GOOGLETEST_ROOT}) 16 target_include_directories(gtest PUBLIC ${GOOGLETEST_ROOT}/include) 39 target_link_libraries(testOboe gtest oboe)
|
/third_party/mesa3d/src/gtest/include/gtest/internal/custom/ |
D | README.md | 5 ## Header `gtest.h` 14 ## Header `gtest-port.h` 53 ## Header `gtest-printers.h` 55 * See documentation at `gtest/gtest-printers.h` for details on how to define a
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | BUILD.gn | 168 "${skia_third_party_dir}/googletest:gtest", 183 "${skia_third_party_dir}/googletest:gtest", 202 "${skia_third_party_dir}/googletest:gtest", 288 "${skia_third_party_dir}/googletest:gtest", 332 "${skia_third_party_dir}/googletest:gtest", 350 # "${skia_third_party_dir}/googletest:gtest", 370 "${skia_third_party_dir}/googletest:gtest", 389 "${skia_third_party_dir}/googletest:gtest", 410 # "${skia_third_party_dir}/googletest:gtest", 449 "${skia_third_party_dir}/googletest:gtest", [all …]
|
/third_party/openh264/ |
D | Makefile | 48 ifeq (,$(wildcard $(SRC_PATH)gtest)) 127 -I$(SRC_PATH)gtest/googletest \ 128 -I$(SRC_PATH)gtest/googletest/include 131 -I$(SRC_PATH)gtest/googletest/include \ 146 CODEC_UNITTEST_LDFLAGS = $(LINK_LOCAL_DIR) $(call LINK_LIB,gtest) $(call LINK_LIB,decoder) $(call L… 147 CODEC_UNITTEST_DEPS = $(LIBPREFIX)gtest.$(LIBSUFFIX) $(LIBPREFIX)decoder.$(LIBSUFFIX) $(LIBPREFIX)e… 161 .PHONY: test gtest-bootstrap clean $(PROJECT_NAME).pc $(PROJECT_NAME)-static.pc 179 gtest-bootstrap: 180 if [ ! -d gtest ] ; then git clone https://github.com/google/googletest.git gtest && \ 181 cd gtest && git checkout -b $(GTEST_VER) $(GTEST_VER) ; fi [all …]
|
/third_party/openh264/subprojects/ |
D | gtest.wrap | 5 source_filename = gtest-1.8.0.zip 8 patch_url = https://wrapdb.mesonbuild.com/v1/projects/gtest/1.8.0/4/get_zip 9 patch_filename = gtest-1.8.0-4-wrap.zip
|