1# Copyright 2020 The Chromium Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5import("//build_overrides/build.gni") 6 7source_set("test_main") { 8 testonly = true 9 10 sources = [ 11 "test_main.cc", 12 ] 13 14 if (!build_with_chromium) { 15 defines = [ "ENABLE_PLATFORM_IMPL" ] 16 } 17 18 deps = [ 19 "../platform", 20 "../third_party/googletest:gtest", 21 ] 22} 23