| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "font_render_params_linux.cc", | 98 "font_render_params_linux.cc", |
| 99 "font_render_params_mac.cc", | 99 "font_render_params_mac.cc", |
| 100 "font_render_params_win.cc", | 100 "font_render_params_win.cc", |
| 101 "frame_time.h", | 101 "frame_time.h", |
| 102 "gdi_util.cc", | 102 "gdi_util.cc", |
| 103 "gdi_util.h", | 103 "gdi_util.h", |
| 104 "gfx_paths.cc", | 104 "gfx_paths.cc", |
| 105 "gfx_paths.h", | 105 "gfx_paths.h", |
| 106 "gpu_memory_buffer.cc", | 106 "gpu_memory_buffer.cc", |
| 107 "gpu_memory_buffer.h", | 107 "gpu_memory_buffer.h", |
| 108 "hud_font.cc", |
| 109 "hud_font.h", |
| 108 "icon_util.cc", | 110 "icon_util.cc", |
| 109 "icon_util.h", | 111 "icon_util.h", |
| 110 "image/canvas_image_source.cc", | 112 "image/canvas_image_source.cc", |
| 111 "image/canvas_image_source.h", | 113 "image/canvas_image_source.h", |
| 112 "image/image.cc", | 114 "image/image.cc", |
| 113 "image/image.h", | 115 "image/image.h", |
| 114 "image/image_family.cc", | 116 "image/image_family.cc", |
| 115 "image/image_family.h", | 117 "image/image_family.h", |
| 116 "image/image_ios.mm", | 118 "image/image_ios.mm", |
| 117 "image/image_mac.mm", | 119 "image/image_mac.mm", |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 if (is_android) { | 547 if (is_android) { |
| 546 generate_jni("gfx_jni_headers") { | 548 generate_jni("gfx_jni_headers") { |
| 547 sources = [ | 549 sources = [ |
| 548 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 550 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 549 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 551 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 550 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 552 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 551 ] | 553 ] |
| 552 jni_package = "gfx" | 554 jni_package = "gfx" |
| 553 } | 555 } |
| 554 } | 556 } |
| OLD | NEW |