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

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: Make it static_library, ditch export macros. 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 53%
copy from components/cdm/browser/BUILD.gn
copy to components/ui/zoom/BUILD.gn
index e18b67035e55756ee7f08d3048949c8f8a7feb7b..061777106e7c6e570929cc8cda965e18c3495531 100644
--- a/components/cdm/browser/BUILD.gn
+++ b/components/ui/zoom/BUILD.gn
@@ -2,17 +2,23 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("browser") {
+static_library("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",
]
+ defines = [ "UI_ZOOM_IMPLEMENTATION"]
jochen (gone - plz use gerrit) 2014/12/09 13:52:28 same
wjmaclean 2014/12/09 13:59:23 Done.
+
deps = [
"//base",
- "//components/cdm/common",
"//content/public/browser",
"//content/public/common",
- "//media",
+ "//ipc",
+ "//net",
+ "//url",
]
}
« no previous file with comments | « components/components.gyp ('k') | components/ui/zoom/DEPS » ('j') | components/ui_zoom.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698