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

Unified Diff: components/ui/zoom/BUILD.gn

Issue 769593003: Move ZoomObserver, ZoomController and ZoomEventManager to components/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address asvitkine@'s comments. Created 6 years 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/ui/zoom/BUILD.gn
diff --git a/components/cdm/browser/BUILD.gn b/components/ui/zoom/BUILD.gn
similarity index 58%
copy from components/cdm/browser/BUILD.gn
copy to components/ui/zoom/BUILD.gn
index e18b67035e55756ee7f08d3048949c8f8a7feb7b..e83de38db81468f1366ccb8fd918c73de242cce9 100644
--- a/components/cdm/browser/BUILD.gn
+++ b/components/ui/zoom/BUILD.gn
@@ -2,17 +2,21 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("browser") {
+component("ui_zoom") {
sources = [
- "cdm_message_filter_android.cc",
- "cdm_message_filter_android.h",
+ "zoom_controller.cc",
+ "zoom_controller.h",
+ "zoom_event_manager.cc",
+ "zoom_event_manager.h",
+ "zoom_observer.h",
]
deps = [
"//base",
- "//components/cdm/common",
"//content/public/browser",
"//content/public/common",
- "//media",
+ "//ipc",
+ "//net",
+ "//url",
]
}

Powered by Google App Engine
This is Rietveld 408576698