15 lines
378 B
Plaintext
15 lines
378 B
Plaintext
|
|
# Copyright 2021 The Chromium Authors
|
||
|
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
|
# found in the LICENSE file.
|
||
|
|
|
||
|
|
# TODO(https://crbug.com/1216547): add unit tests
|
||
|
|
executable("root_store_tool") {
|
||
|
|
sources = [ "root_store_tool.cc" ]
|
||
|
|
deps = [
|
||
|
|
"//base",
|
||
|
|
"//crypto",
|
||
|
|
"//net/cert:root_store_proto_full",
|
||
|
|
"//third_party/boringssl",
|
||
|
|
]
|
||
|
|
}
|