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 = [ "test_main.cc" ] 11 12 if (!build_with_chromium) { 13 defines = [ "ENABLE_PLATFORM_IMPL" ] 14 } 15 16 deps = [ 17 "../platform", 18 "../platform:standalone_impl", 19 "../third_party/googletest:gtest", 20 ] 21} 22