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

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: 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.gypi
diff --git a/components/url_fixer.gypi b/components/ui_zoom.gypi
similarity index 51%
copy from components/url_fixer.gypi
copy to components/ui_zoom.gypi
index 917e9d77d743ca4563f5cb00d0624dc4f56f9232..50a82cf457d117ccb63b17527eb4731ebf73c8cb 100644
--- a/components/url_fixer.gypi
+++ b/components/ui_zoom.gypi
@@ -5,23 +5,23 @@
{
'targets': [
{
- # GN version: //components/url_fixer
- 'target_name': 'url_fixer',
- 'type': 'static_library',
+ 'target_name': 'ui_zoom',
+ 'type': '<(component)',
'include_dirs': [
'..',
],
'dependencies': [
'../base/base.gyp:base',
+ '../content/content.gyp:content_browser',
'../net/net.gyp:net',
],
'sources': [
- # Note: sources list duplicated in GN build.
- 'url_fixer/url_fixer.cc',
- 'url_fixer/url_fixer.h',
+ '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'
],
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- 'msvs_disabled_warnings': [4267, ],
- },
+ }
],
}

Powered by Google App Engine
This is Rietveld 408576698