14 lines
447 B
Plaintext
14 lines
447 B
Plaintext
|
|
# Copyright 2017 The Chromium Authors
|
||
|
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
|
# found in the LICENSE file.
|
||
|
|
|
||
|
|
action_foreach("generate_fuzzer_cert_includes") {
|
||
|
|
script = "//net/data/ssl/scripts/generate-fuzzer-cert-include.py"
|
||
|
|
sources = [
|
||
|
|
"spdy_pooling.pem",
|
||
|
|
"wildcard.pem",
|
||
|
|
]
|
||
|
|
outputs = [ "$target_gen_dir/{{source_name_part}}.inc" ]
|
||
|
|
args = [ "{{source}}" ] + rebase_path(outputs, root_build_dir)
|
||
|
|
}
|