| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 "font_list_impl.cc", | 96 "font_list_impl.cc", |
| 97 "font_list_impl.h", | 97 "font_list_impl.h", |
| 98 "font_render_params.cc", | 98 "font_render_params.cc", |
| 99 "font_render_params.h", | 99 "font_render_params.h", |
| 100 "font_render_params_android.cc", | 100 "font_render_params_android.cc", |
| 101 "font_render_params_linux.cc", | 101 "font_render_params_linux.cc", |
| 102 "font_render_params_mac.cc", | 102 "font_render_params_mac.cc", |
| 103 "font_render_params_win.cc", | 103 "font_render_params_win.cc", |
| 104 "gdi_util.cc", | 104 "gdi_util.cc", |
| 105 "gdi_util.h", | 105 "gdi_util.h", |
| 106 "generic_shared_memory_id.cc", |
| 107 "generic_shared_memory_id.h", |
| 106 "gfx_paths.cc", | 108 "gfx_paths.cc", |
| 107 "gfx_paths.h", | 109 "gfx_paths.h", |
| 108 "gpu_memory_buffer.cc", | 110 "gpu_memory_buffer.cc", |
| 109 "gpu_memory_buffer.h", | 111 "gpu_memory_buffer.h", |
| 110 "hud_font.cc", | 112 "hud_font.cc", |
| 111 "hud_font.h", | 113 "hud_font.h", |
| 112 "icon_util.cc", | 114 "icon_util.cc", |
| 113 "icon_util.h", | 115 "icon_util.h", |
| 114 "image/canvas_image_source.cc", | 116 "image/canvas_image_source.cc", |
| 115 "image/canvas_image_source.h", | 117 "image/canvas_image_source.h", |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 if (is_android) { | 641 if (is_android) { |
| 640 generate_jni("gfx_jni_headers") { | 642 generate_jni("gfx_jni_headers") { |
| 641 sources = [ | 643 sources = [ |
| 642 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 644 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 643 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 645 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 644 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 646 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 645 ] | 647 ] |
| 646 jni_package = "gfx" | 648 jni_package = "gfx" |
| 647 } | 649 } |
| 648 } | 650 } |
| OLD | NEW |