| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "font.h", | 86 "font.h", |
| 87 "font_fallback.h", | 87 "font_fallback.h", |
| 88 "font_fallback_linux.cc", | 88 "font_fallback_linux.cc", |
| 89 "font_fallback_mac.cc", | 89 "font_fallback_mac.cc", |
| 90 "font_fallback_win.cc", | 90 "font_fallback_win.cc", |
| 91 "font_fallback_win.h", | 91 "font_fallback_win.h", |
| 92 "font_list.cc", | 92 "font_list.cc", |
| 93 "font_list.h", | 93 "font_list.h", |
| 94 "font_list_impl.cc", | 94 "font_list_impl.cc", |
| 95 "font_list_impl.h", | 95 "font_list_impl.h", |
| 96 "font_render_params.cc", |
| 97 "font_render_params.h", |
| 96 "font_render_params_android.cc", | 98 "font_render_params_android.cc", |
| 97 "font_render_params_linux.cc", | 99 "font_render_params_linux.cc", |
| 100 "font_render_params_mac.cc", |
| 98 "font_render_params_win.cc", | 101 "font_render_params_win.cc", |
| 99 "font_render_params.cc", | |
| 100 "font_render_params.h", | |
| 101 "frame_time.h", | 102 "frame_time.h", |
| 102 "gdi_util.cc", | 103 "gdi_util.cc", |
| 103 "gdi_util.h", | 104 "gdi_util.h", |
| 104 "gfx_paths.cc", | 105 "gfx_paths.cc", |
| 105 "gfx_paths.h", | 106 "gfx_paths.h", |
| 106 "gpu_memory_buffer.cc", | 107 "gpu_memory_buffer.cc", |
| 107 "gpu_memory_buffer.h", | 108 "gpu_memory_buffer.h", |
| 108 "icon_util.cc", | 109 "icon_util.cc", |
| 109 "icon_util.h", | 110 "icon_util.h", |
| 110 "image/canvas_image_source.cc", | 111 "image/canvas_image_source.cc", |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 if (is_android) { | 434 if (is_android) { |
| 434 generate_jni("gfx_jni_headers") { | 435 generate_jni("gfx_jni_headers") { |
| 435 sources = [ | 436 sources = [ |
| 436 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 437 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 437 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 438 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 438 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 439 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 439 ] | 440 ] |
| 440 jni_package = "gfx" | 441 jni_package = "gfx" |
| 441 } | 442 } |
| 442 } | 443 } |
| OLD | NEW |