| 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 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 "text_utils_android.cc", | 199 "text_utils_android.cc", |
| 200 "text_utils_ios.mm", | 200 "text_utils_ios.mm", |
| 201 "transform.cc", | 201 "transform.cc", |
| 202 "transform.h", | 202 "transform.h", |
| 203 "transform_util.cc", | 203 "transform_util.cc", |
| 204 "transform_util.h", | 204 "transform_util.h", |
| 205 "ui_gfx_exports.cc", | 205 "ui_gfx_exports.cc", |
| 206 "utf16_indexing.cc", | 206 "utf16_indexing.cc", |
| 207 "utf16_indexing.h", | 207 "utf16_indexing.h", |
| 208 "vsync_provider.h", | 208 "vsync_provider.h", |
| 209 "win/direct_write.cc", |
| 210 "win/direct_write.h", |
| 209 "win/dpi.cc", | 211 "win/dpi.cc", |
| 210 "win/dpi.h", | 212 "win/dpi.h", |
| 211 "win/hwnd_util.cc", | 213 "win/hwnd_util.cc", |
| 212 "win/hwnd_util.h", | 214 "win/hwnd_util.h", |
| 213 "win/scoped_set_map_mode.h", | 215 "win/scoped_set_map_mode.h", |
| 214 "win/singleton_hwnd.cc", | 216 "win/singleton_hwnd.cc", |
| 215 "win/singleton_hwnd.h", | 217 "win/singleton_hwnd.h", |
| 216 "win/window_impl.cc", | 218 "win/window_impl.cc", |
| 217 "win/window_impl.h", | 219 "win/window_impl.h", |
| 218 ] | 220 ] |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 if (is_android) { | 565 if (is_android) { |
| 564 generate_jni("gfx_jni_headers") { | 566 generate_jni("gfx_jni_headers") { |
| 565 sources = [ | 567 sources = [ |
| 566 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 568 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 567 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 569 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 568 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 570 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 569 ] | 571 ] |
| 570 jni_package = "gfx" | 572 jni_package = "gfx" |
| 571 } | 573 } |
| 572 } | 574 } |
| OLD | NEW |