Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Unified Diff: components/pdf/browser/BUILD.gn

Issue 477263003: pdf: Create a separate component for using the pdf pepper plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix-gn Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/pdf/browser/BUILD.gn
diff --git a/components/cdm/browser/BUILD.gn b/components/pdf/browser/BUILD.gn
similarity index 50%
copy from components/cdm/browser/BUILD.gn
copy to components/pdf/browser/BUILD.gn
index e18b67035e55756ee7f08d3048949c8f8a7feb7b..c76da5ede2153af7931cc9b61886548e78ad95c0 100644
--- a/components/cdm/browser/BUILD.gn
+++ b/components/pdf/browser/BUILD.gn
@@ -2,17 +2,18 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("browser") {
+import("//build/config/features.gni")
+
+static_library("browser") {
sources = [
- "cdm_message_filter_android.cc",
- "cdm_message_filter_android.h",
+ "open_pdf_in_reader_prompt_delegate.h",
+ "pdf_tab_helper.cc",
+ "pdf_tab_helper.h",
+ "pdf_tab_helper_delegate.h",
]
deps = [
- "//base",
- "//components/cdm/common",
+ "//components/pdf/common",
"//content/public/browser",
- "//content/public/common",
- "//media",
]
}

Powered by Google App Engine
This is Rietveld 408576698