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

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

Issue 528363002: Move webCacheManager to //components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove an unnecessary dependency in web_cache.gypi. Created 6 years, 3 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/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",
]
}

Powered by Google App Engine
This is Rietveld 408576698