summaryrefslogtreecommitdiff
path: root/core/fdrm/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'core/fdrm/BUILD.gn')
-rw-r--r--core/fdrm/BUILD.gn20
1 files changed, 20 insertions, 0 deletions
diff --git a/core/fdrm/BUILD.gn b/core/fdrm/BUILD.gn
new file mode 100644
index 0000000000..d030f01d2d
--- /dev/null
+++ b/core/fdrm/BUILD.gn
@@ -0,0 +1,20 @@
+# Copyright 2018 The PDFium 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("//build/config/jumbo.gni")
+import("../../pdfium.gni")
+
+jumbo_source_set("fdrm") {
+ sources = [
+ "fx_crypt.cpp",
+ "fx_crypt.h",
+ "fx_crypt_aes.cpp",
+ "fx_crypt_sha.cpp",
+ ]
+ configs += [ "../../:pdfium_core_config" ]
+ deps = [
+ "../../:fxcrt",
+ ]
+ visibility = [ "../../*" ]
+}