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

Unified Diff: components/ui_zoom.gypi

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.gypi
diff --git a/components/ui_zoom.gypi b/components/ui_zoom.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..153a648dee84d07fde5403c848f8f7e0d238f709
--- /dev/null
+++ b/components/ui_zoom.gypi
@@ -0,0 +1,33 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'ui_zoom',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_browser',
+ '../content/content.gyp:content_common',
+ '../ipc/ipc.gyp:ipc',
+ '../net/net.gyp:net',
+ '../url/url.gyp:url_lib',
+ ],
+ 'defines': [
jochen (gone - plz use gerrit) 2014/12/09 13:52:29 not needed anymore
wjmaclean 2014/12/09 13:59:23 Done.
+ 'UI_ZOOM_IMPLEMENTATION',
+ ],
+ 'sources': [
+ 'ui/zoom/zoom_controller.cc',
+ 'ui/zoom/zoom_controller.h',
+ 'ui/zoom/zoom_event_manager.cc',
+ 'ui/zoom/zoom_event_manager.h',
+ 'ui/zoom/zoom_observer.h'
+ ],
+ }
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698