mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
21 lines
492 B
Plaintext
21 lines
492 B
Plaintext
|
# Copyright (c) 2018 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
import("//testing/test.gni")
|
||
|
|
||
|
test("chrome_cleaner_unittests") {
|
||
|
sources = [
|
||
|
"test/test_main.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
# Tests from sub-directories.
|
||
|
"//chrome/chrome_cleaner/strings:unittest_sources",
|
||
|
|
||
|
# Dependencies of the test harness.
|
||
|
"//base",
|
||
|
"//base/test:test_support",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
}
|