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

Side by Side Diff: ui/gfx/gfx.gyp

Issue 1945903002: Move display_finder to ui/display (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 117 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
118 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 118 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
119 ], 119 ],
120 'defines': [ 120 'defines': [
121 'GFX_IMPLEMENTATION', 121 'GFX_IMPLEMENTATION',
122 ], 122 ],
123 'include_dirs': [ 123 'include_dirs': [
124 '<(DEPTH)/third_party/icu/source/common', 124 '<(DEPTH)/third_party/icu/source/common',
125 ], 125 ],
126 'sources': [ 126 'sources': [
127 "win/physical_size.cc",
robliao 2016/05/04 17:21:50 Stray change?
oshima 2016/05/05 18:31:02 Hmm, i don't know how/who moved this. Reverted.
128 "win/physical_size.h",
127 'android/device_display_info.cc', 129 'android/device_display_info.cc',
128 'android/device_display_info.h', 130 'android/device_display_info.h',
129 'android/gfx_jni_registrar.cc', 131 'android/gfx_jni_registrar.cc',
130 'android/gfx_jni_registrar.h', 132 'android/gfx_jni_registrar.h',
131 'android/java_bitmap.cc', 133 'android/java_bitmap.cc',
132 'android/java_bitmap.h', 134 'android/java_bitmap.h',
133 'android/shared_device_display_info.cc', 135 'android/shared_device_display_info.cc',
134 'android/shared_device_display_info.h', 136 'android/shared_device_display_info.h',
135 'android/view_configuration.cc', 137 'android/view_configuration.cc',
136 'android/view_configuration.h', 138 'android/view_configuration.h',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'color_profile.cc', 178 'color_profile.cc',
177 'color_profile.h', 179 'color_profile.h',
178 'color_profile_mac.mm', 180 'color_profile_mac.mm',
179 'color_profile_win.cc', 181 'color_profile_win.cc',
180 'color_utils.cc', 182 'color_utils.cc',
181 'color_utils.h', 183 'color_utils.h',
182 'display.cc', 184 'display.cc',
183 'display.h', 185 'display.h',
184 'display_change_notifier.cc', 186 'display_change_notifier.cc',
185 'display_change_notifier.h', 187 'display_change_notifier.h',
186 'display_finder.cc',
187 'display_finder.h',
188 'display_observer.cc', 188 'display_observer.cc',
189 'display_observer.h', 189 'display_observer.h',
190 'favicon_size.cc', 190 'favicon_size.cc',
191 'favicon_size.h', 191 'favicon_size.h',
192 'font.cc', 192 'font.cc',
193 'font.h', 193 'font.h',
194 'font_fallback.h', 194 'font_fallback.h',
195 'font_fallback_linux.cc', 195 'font_fallback_linux.cc',
196 'font_fallback_linux.h', 196 'font_fallback_linux.h',
197 'font_fallback_mac.mm', 197 'font_fallback_mac.mm',
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 'ui_gfx_exports.cc', 327 'ui_gfx_exports.cc',
328 'utf16_indexing.cc', 328 'utf16_indexing.cc',
329 'utf16_indexing.h', 329 'utf16_indexing.h',
330 'vsync_provider.h', 330 'vsync_provider.h',
331 'win/direct_manipulation.cc', 331 'win/direct_manipulation.cc',
332 'win/direct_manipulation.h', 332 'win/direct_manipulation.h',
333 'win/direct_write.cc', 333 'win/direct_write.cc',
334 'win/direct_write.h', 334 'win/direct_write.h',
335 'win/hwnd_util.cc', 335 'win/hwnd_util.cc',
336 'win/hwnd_util.h', 336 'win/hwnd_util.h',
337 "win/physical_size.cc",
338 "win/physical_size.h",
339 'win/rendering_window_manager.cc', 337 'win/rendering_window_manager.cc',
340 'win/rendering_window_manager.h', 338 'win/rendering_window_manager.h',
341 'win/scoped_set_map_mode.h', 339 'win/scoped_set_map_mode.h',
342 'win/singleton_hwnd.cc', 340 'win/singleton_hwnd.cc',
343 'win/singleton_hwnd.h', 341 'win/singleton_hwnd.h',
344 'win/singleton_hwnd_observer.cc', 342 'win/singleton_hwnd_observer.cc',
345 'win/singleton_hwnd_observer.h', 343 'win/singleton_hwnd_observer.h',
346 'win/window_impl.cc', 344 'win/window_impl.cc',
347 'win/window_impl.h', 345 'win/window_impl.h',
348 ], 346 ],
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 ], 599 ],
602 'variables': { 600 'variables': {
603 'jni_gen_package': 'ui/gfx', 601 'jni_gen_package': 'ui/gfx',
604 }, 602 },
605 'includes': [ '../../build/jni_generator.gypi' ], 603 'includes': [ '../../build/jni_generator.gypi' ],
606 }, 604 },
607 ], 605 ],
608 }], 606 }],
609 ], 607 ],
610 } 608 }
OLDNEW
« ui/display/BUILD.gn ('K') | « ui/gfx/display_finder.cc ('k') | ui/gfx/test/display_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698