summaryrefslogtreecommitdiffstats
path: root/components/pdf/common/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'components/pdf/common/BUILD.gn')
-rw-r--r--components/pdf/common/BUILD.gn20
1 files changed, 20 insertions, 0 deletions
diff --git a/components/pdf/common/BUILD.gn b/components/pdf/common/BUILD.gn
new file mode 100644
index 0000000..adff35e
--- /dev/null
+++ b/components/pdf/common/BUILD.gn
@@ -0,0 +1,20 @@
+# Copyright 2014 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("//build/config/features.gni")
+
+static_library("common") {
+ sources = [
+ "pdf_message_generator.cc",
+ "pdf_message_generator.h",
+ "pdf_messages.h",
+ ]
+
+ deps = [
+ "//base",
+ "//content/public/common",
+ "//ipc",
+ "//url",
+ ]
+}