| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 "transform_util.cc", | 205 "transform_util.cc", |
| 206 "transform_util.h", | 206 "transform_util.h", |
| 207 "ui_gfx_exports.cc", | 207 "ui_gfx_exports.cc", |
| 208 "utf16_indexing.cc", | 208 "utf16_indexing.cc", |
| 209 "utf16_indexing.h", | 209 "utf16_indexing.h", |
| 210 "vsync_provider.h", | 210 "vsync_provider.h", |
| 211 "win/direct_manipulation.cc", | 211 "win/direct_manipulation.cc", |
| 212 "win/direct_manipulation.h", | 212 "win/direct_manipulation.h", |
| 213 "win/direct_write.cc", | 213 "win/direct_write.cc", |
| 214 "win/direct_write.h", | 214 "win/direct_write.h", |
| 215 "win/display_info.cc", |
| 216 "win/display_info.h", |
| 217 "win/display_manager.cc", |
| 218 "win/display_manager.h", |
| 219 "win/display_manager_observer.cc", |
| 220 "win/display_manager_observer.h", |
| 215 "win/dpi.cc", | 221 "win/dpi.cc", |
| 216 "win/dpi.h", | 222 "win/dpi.h", |
| 217 "win/hwnd_util.cc", | 223 "win/hwnd_util.cc", |
| 218 "win/hwnd_util.h", | 224 "win/hwnd_util.h", |
| 219 "win/physical_size.cc", | 225 "win/physical_size.cc", |
| 220 "win/physical_size.h", | 226 "win/physical_size.h", |
| 227 "win/rect_util.cc", |
| 228 "win/rect_util.h", |
| 221 "win/scoped_set_map_mode.h", | 229 "win/scoped_set_map_mode.h", |
| 230 "win/screen_win_display.cc", |
| 231 "win/screen_win_display.h", |
| 222 "win/singleton_hwnd.cc", | 232 "win/singleton_hwnd.cc", |
| 223 "win/singleton_hwnd.h", | 233 "win/singleton_hwnd.h", |
| 224 "win/singleton_hwnd_observer.cc", | 234 "win/singleton_hwnd_observer.cc", |
| 225 "win/singleton_hwnd_observer.h", | 235 "win/singleton_hwnd_observer.h", |
| 226 "win/window_impl.cc", | 236 "win/window_impl.cc", |
| 227 "win/window_impl.h", | 237 "win/window_impl.h", |
| 228 ] | 238 ] |
| 229 if (!is_ios) { | 239 if (!is_ios) { |
| 230 sources += [ | 240 sources += [ |
| 231 "blit.cc", | 241 "blit.cc", |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 if (is_android) { | 787 if (is_android) { |
| 778 generate_jni("gfx_jni_headers") { | 788 generate_jni("gfx_jni_headers") { |
| 779 sources = [ | 789 sources = [ |
| 780 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 790 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 781 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 791 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 782 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 792 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 783 ] | 793 ] |
| 784 jni_package = "gfx" | 794 jni_package = "gfx" |
| 785 } | 795 } |
| 786 } | 796 } |
| OLD | NEW |