| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/dpi.cc", | 215 "win/dpi.cc", |
| 216 "win/dpi.h", | 216 "win/dpi.h", |
| 217 "win/hwnd_util.cc", | 217 "win/hwnd_util.cc", |
| 218 "win/hwnd_util.h", | 218 "win/hwnd_util.h", |
| 219 "win/physical_size.cc", | |
| 220 "win/physical_size.h", | |
| 221 "win/scoped_set_map_mode.h", | 219 "win/scoped_set_map_mode.h", |
| 222 "win/singleton_hwnd.cc", | 220 "win/singleton_hwnd.cc", |
| 223 "win/singleton_hwnd.h", | 221 "win/singleton_hwnd.h", |
| 224 "win/singleton_hwnd_observer.cc", | 222 "win/singleton_hwnd_observer.cc", |
| 225 "win/singleton_hwnd_observer.h", | 223 "win/singleton_hwnd_observer.h", |
| 226 "win/window_impl.cc", | 224 "win/window_impl.cc", |
| 227 "win/window_impl.h", | 225 "win/window_impl.h", |
| 228 ] | 226 ] |
| 229 if (!is_ios) { | 227 if (!is_ios) { |
| 230 sources += [ | 228 sources += [ |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 if (is_android) { | 775 if (is_android) { |
| 778 generate_jni("gfx_jni_headers") { | 776 generate_jni("gfx_jni_headers") { |
| 779 sources = [ | 777 sources = [ |
| 780 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 778 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 781 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 779 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 782 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 780 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 783 ] | 781 ] |
| 784 jni_package = "gfx" | 782 jni_package = "gfx" |
| 785 } | 783 } |
| 786 } | 784 } |
| OLD | NEW |