mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
16 lines
476 B
Plaintext
16 lines
476 B
Plaintext
|
# Copyright 2017 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.
|
||
|
|
||
|
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)
|
||
|
}
|