mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
32 lines
755 B
Plaintext
32 lines
755 B
Plaintext
# Copyright 2016 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("//third_party/blink/renderer/modules/modules.gni")
|
|
|
|
blink_modules_sources("crypto") {
|
|
sources = [
|
|
"crypto.cc",
|
|
"crypto.h",
|
|
"crypto_histograms.cc",
|
|
"crypto_histograms.h",
|
|
"crypto_key.cc",
|
|
"crypto_key.h",
|
|
"crypto_result_impl.cc",
|
|
"crypto_result_impl.h",
|
|
"crypto_utilities.h",
|
|
"dom_window_crypto.cc",
|
|
"dom_window_crypto.h",
|
|
"normalize_algorithm.cc",
|
|
"normalize_algorithm.h",
|
|
"subtle_crypto.cc",
|
|
"subtle_crypto.h",
|
|
"worker_global_scope_crypto.cc",
|
|
"worker_global_scope_crypto.h",
|
|
]
|
|
|
|
deps = [
|
|
"//crypto",
|
|
]
|
|
}
|