| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 "platform_font.h", | 141 "platform_font.h", |
| 142 "platform_font_android.cc", | 142 "platform_font_android.cc", |
| 143 "platform_font_ios.h", | 143 "platform_font_ios.h", |
| 144 "platform_font_ios.mm", | 144 "platform_font_ios.mm", |
| 145 "platform_font_linux.cc", | 145 "platform_font_linux.cc", |
| 146 "platform_font_linux.h", | 146 "platform_font_linux.h", |
| 147 "platform_font_mac.h", | 147 "platform_font_mac.h", |
| 148 "platform_font_mac.mm", | 148 "platform_font_mac.mm", |
| 149 "platform_font_win.cc", | 149 "platform_font_win.cc", |
| 150 "platform_font_win.h", | 150 "platform_font_win.h", |
| 151 "scoped_canvas.h", | |
| 152 "scoped_cg_context_save_gstate_mac.h", | 151 "scoped_cg_context_save_gstate_mac.h", |
| 153 "scoped_ns_graphics_context_save_gstate_mac.h", | 152 "scoped_ns_graphics_context_save_gstate_mac.h", |
| 154 "scoped_ns_graphics_context_save_gstate_mac.mm", | 153 "scoped_ns_graphics_context_save_gstate_mac.mm", |
| 155 "scoped_ui_graphics_push_context_ios.h", | 154 "scoped_ui_graphics_push_context_ios.h", |
| 156 "scoped_ui_graphics_push_context_ios.mm", | 155 "scoped_ui_graphics_push_context_ios.mm", |
| 157 "scrollbar_size.cc", | 156 "scrollbar_size.cc", |
| 158 "scrollbar_size.h", | 157 "scrollbar_size.h", |
| 159 "selection_model.cc", | 158 "selection_model.cc", |
| 160 "selection_model.h", | 159 "selection_model.h", |
| 161 "sequential_id_generator.cc", | 160 "sequential_id_generator.cc", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 "canvas_paint_mac.h", | 212 "canvas_paint_mac.h", |
| 214 "canvas_paint_mac.mm", | 213 "canvas_paint_mac.mm", |
| 215 "canvas_skia.cc", | 214 "canvas_skia.cc", |
| 216 "canvas_skia_paint.h", | 215 "canvas_skia_paint.h", |
| 217 "image/canvas_image_source.cc", | 216 "image/canvas_image_source.cc", |
| 218 "image/canvas_image_source.h", | 217 "image/canvas_image_source.h", |
| 219 "image/image_skia_operations.cc", | 218 "image/image_skia_operations.cc", |
| 220 "image/image_skia_operations.h", | 219 "image/image_skia_operations.h", |
| 221 "paint_throbber.cc", | 220 "paint_throbber.cc", |
| 222 "paint_throbber.h", | 221 "paint_throbber.h", |
| 222 "scoped_canvas.cc", |
| 223 "scoped_canvas.h", |
| 223 ] | 224 ] |
| 224 } | 225 } |
| 225 | 226 |
| 226 configs += [ | 227 configs += [ |
| 227 "//build/config:precompiled_headers", | 228 "//build/config:precompiled_headers", |
| 228 | 229 |
| 229 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 230 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 230 "//build/config/compiler:no_size_t_to_int_warning", | 231 "//build/config/compiler:no_size_t_to_int_warning", |
| 231 ] | 232 ] |
| 232 | 233 |
| (...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 if (is_android) { | 816 if (is_android) { |
| 816 generate_jni("gfx_jni_headers") { | 817 generate_jni("gfx_jni_headers") { |
| 817 sources = [ | 818 sources = [ |
| 818 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 819 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 819 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 820 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 820 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 821 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 821 ] | 822 ] |
| 822 jni_package = "gfx" | 823 jni_package = "gfx" |
| 823 } | 824 } |
| 824 } | 825 } |
| OLD | NEW |