| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "font_list.cc", | 89 "font_list.cc", |
| 90 "font_list.h", | 90 "font_list.h", |
| 91 "font_list_impl.cc", | 91 "font_list_impl.cc", |
| 92 "font_list_impl.h", | 92 "font_list_impl.h", |
| 93 "font_render_params.cc", | 93 "font_render_params.cc", |
| 94 "font_render_params.h", | 94 "font_render_params.h", |
| 95 "font_render_params_android.cc", | 95 "font_render_params_android.cc", |
| 96 "font_render_params_linux.cc", | 96 "font_render_params_linux.cc", |
| 97 "font_render_params_mac.cc", | 97 "font_render_params_mac.cc", |
| 98 "font_render_params_win.cc", | 98 "font_render_params_win.cc", |
| 99 "frame_time.h", | |
| 100 "gdi_util.cc", | 99 "gdi_util.cc", |
| 101 "gdi_util.h", | 100 "gdi_util.h", |
| 102 "gfx_paths.cc", | 101 "gfx_paths.cc", |
| 103 "gfx_paths.h", | 102 "gfx_paths.h", |
| 104 "gpu_memory_buffer.cc", | 103 "gpu_memory_buffer.cc", |
| 105 "gpu_memory_buffer.h", | 104 "gpu_memory_buffer.h", |
| 106 "hud_font.cc", | 105 "hud_font.cc", |
| 107 "hud_font.h", | 106 "hud_font.h", |
| 108 "icon_util.cc", | 107 "icon_util.cc", |
| 109 "icon_util.h", | 108 "icon_util.h", |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 if (is_android) { | 543 if (is_android) { |
| 545 generate_jni("gfx_jni_headers") { | 544 generate_jni("gfx_jni_headers") { |
| 546 sources = [ | 545 sources = [ |
| 547 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 546 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 548 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 547 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 549 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 548 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 550 ] | 549 ] |
| 551 jni_package = "gfx" | 550 jni_package = "gfx" |
| 552 } | 551 } |
| 553 } | 552 } |
| OLD | NEW |