• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2021 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//base/allocator/allocator.gni")
6import("//testing/test.gni")
7
8executable("test_cpp_including_rust") {
9  sources = [ "main.cc" ]
10  deps = [ "//build/rust/tests/test_rust_static_library" ]
11}
12
13test("test_cpp_including_rust_unittests") {
14  sources = [ "unittests.cc" ]
15  deps = [
16    "//base",
17    "//base/allocator:buildflags",
18    "//base/test:run_all_unittests",
19    "//build/rust/tests/test_rust_static_library",
20    "//testing/gmock",
21    "//testing/gtest",
22  ]
23}
24