| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 "mac/io_surface.cc", | 136 "mac/io_surface.cc", |
| 137 "mac/io_surface.h", | 137 "mac/io_surface.h", |
| 138 "mac/nswindow_frame_controls.h", | 138 "mac/nswindow_frame_controls.h", |
| 139 "mac/nswindow_frame_controls.mm", | 139 "mac/nswindow_frame_controls.mm", |
| 140 "mac/scoped_cocoa_disable_screen_updates.h", | 140 "mac/scoped_cocoa_disable_screen_updates.h", |
| 141 "native_widget_types.h", | 141 "native_widget_types.h", |
| 142 "nine_image_painter.cc", | 142 "nine_image_painter.cc", |
| 143 "nine_image_painter.h", | 143 "nine_image_painter.h", |
| 144 "path.cc", | 144 "path.cc", |
| 145 "path.h", | 145 "path.h", |
| 146 "path_mac.h", |
| 147 "path_mac.mm", |
| 146 "path_win.cc", | 148 "path_win.cc", |
| 147 "path_win.h", | 149 "path_win.h", |
| 148 "path_x11.cc", | 150 "path_x11.cc", |
| 149 "path_x11.h", | 151 "path_x11.h", |
| 150 "platform_font.h", | 152 "platform_font.h", |
| 151 "platform_font_android.cc", | 153 "platform_font_android.cc", |
| 152 "platform_font_ios.h", | 154 "platform_font_ios.h", |
| 153 "platform_font_ios.mm", | 155 "platform_font_ios.mm", |
| 154 "platform_font_linux.cc", | 156 "platform_font_linux.cc", |
| 155 "platform_font_linux.h", | 157 "platform_font_linux.h", |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 "geometry/rect_unittest.cc", | 675 "geometry/rect_unittest.cc", |
| 674 "geometry/safe_integer_conversions_unittest.cc", | 676 "geometry/safe_integer_conversions_unittest.cc", |
| 675 "geometry/scroll_offset_unittest.cc", | 677 "geometry/scroll_offset_unittest.cc", |
| 676 "geometry/size_unittest.cc", | 678 "geometry/size_unittest.cc", |
| 677 "geometry/vector2d_unittest.cc", | 679 "geometry/vector2d_unittest.cc", |
| 678 "geometry/vector3d_unittest.cc", | 680 "geometry/vector3d_unittest.cc", |
| 679 "image/image_mac_unittest.mm", | 681 "image/image_mac_unittest.mm", |
| 680 "image/image_util_unittest.cc", | 682 "image/image_util_unittest.cc", |
| 681 "mac/coordinate_conversion_unittest.mm", | 683 "mac/coordinate_conversion_unittest.mm", |
| 682 "nine_image_painter_unittest.cc", | 684 "nine_image_painter_unittest.cc", |
| 685 "path_mac_unittest.mm", |
| 683 "platform_font_mac_unittest.mm", | 686 "platform_font_mac_unittest.mm", |
| 684 "range/range_mac_unittest.mm", | 687 "range/range_mac_unittest.mm", |
| 685 "range/range_unittest.cc", | 688 "range/range_unittest.cc", |
| 686 "range/range_win_unittest.cc", | 689 "range/range_win_unittest.cc", |
| 687 "sequential_id_generator_unittest.cc", | 690 "sequential_id_generator_unittest.cc", |
| 688 "shadow_value_unittest.cc", | 691 "shadow_value_unittest.cc", |
| 689 "skbitmap_operations_unittest.cc", | 692 "skbitmap_operations_unittest.cc", |
| 690 "skrect_conversion_unittest.cc", | 693 "skrect_conversion_unittest.cc", |
| 691 "transform_util_unittest.cc", | 694 "transform_util_unittest.cc", |
| 692 "utf16_indexing_unittest.cc", | 695 "utf16_indexing_unittest.cc", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 if (is_android) { | 776 if (is_android) { |
| 774 generate_jni("gfx_jni_headers") { | 777 generate_jni("gfx_jni_headers") { |
| 775 sources = [ | 778 sources = [ |
| 776 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 779 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 777 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 780 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 778 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 781 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 779 ] | 782 ] |
| 780 jni_package = "gfx" | 783 jni_package = "gfx" |
| 781 } | 784 } |
| 782 } | 785 } |
| OLD | NEW |