Index: components/web_cache/browser/BUILD.gn |
diff --git a/components/pdf/browser/BUILD.gn b/components/web_cache/browser/BUILD.gn |
similarity index 54% |
copy from components/pdf/browser/BUILD.gn |
copy to components/web_cache/browser/BUILD.gn |
index 7434a8f4905dd891d1aa4f231605958fd170572d..f6d449420771bcdeafd067761acee26e276eb463 100644 |
--- a/components/pdf/browser/BUILD.gn |
+++ b/components/web_cache/browser/BUILD.gn |
@@ -2,18 +2,18 @@ |
# 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("browser") { |
+ output_name = "web_cache_browser" |
sources = [ |
- "open_pdf_in_reader_prompt_client.h", |
- "pdf_web_contents_helper.cc", |
- "pdf_web_contents_helper.h", |
- "pdf_web_contents_helper_client.h", |
+ "web_cache_manager.cc", |
+ "web_cache_manager.h", |
] |
deps = [ |
- "//components/pdf/common", |
+ "//base", |
+ "//components/web_cache/common", |
"//content/public/browser", |
+ "//content/test:test_support", |
James Cook
2014/09/05 16:53:18
Why does this need test_support? Shouldn't that on
Xi Han
2014/09/05 19:39:25
Great catch, thanks!
|
+ "//third_party/WebKit/public:blink", |
] |
} |