| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 "mac/io_surface.cc", | 138 "mac/io_surface.cc", |
| 139 "mac/io_surface.h", | 139 "mac/io_surface.h", |
| 140 "mac/nswindow_frame_controls.h", | 140 "mac/nswindow_frame_controls.h", |
| 141 "mac/nswindow_frame_controls.mm", | 141 "mac/nswindow_frame_controls.mm", |
| 142 "mac/scoped_cocoa_disable_screen_updates.h", | 142 "mac/scoped_cocoa_disable_screen_updates.h", |
| 143 "native_widget_types.h", | 143 "native_widget_types.h", |
| 144 "nine_image_painter.cc", | 144 "nine_image_painter.cc", |
| 145 "nine_image_painter.h", | 145 "nine_image_painter.h", |
| 146 "path.cc", | 146 "path.cc", |
| 147 "path.h", | 147 "path.h", |
| 148 "path_mac.h", |
| 149 "path_mac.mm", |
| 148 "path_win.cc", | 150 "path_win.cc", |
| 149 "path_win.h", | 151 "path_win.h", |
| 150 "path_x11.cc", | 152 "path_x11.cc", |
| 151 "path_x11.h", | 153 "path_x11.h", |
| 152 "platform_font.h", | 154 "platform_font.h", |
| 153 "platform_font_android.cc", | 155 "platform_font_android.cc", |
| 154 "platform_font_ios.h", | 156 "platform_font_ios.h", |
| 155 "platform_font_ios.mm", | 157 "platform_font_ios.mm", |
| 156 "platform_font_linux.cc", | 158 "platform_font_linux.cc", |
| 157 "platform_font_linux.h", | 159 "platform_font_linux.h", |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 "geometry/rect_unittest.cc", | 687 "geometry/rect_unittest.cc", |
| 686 "geometry/safe_integer_conversions_unittest.cc", | 688 "geometry/safe_integer_conversions_unittest.cc", |
| 687 "geometry/scroll_offset_unittest.cc", | 689 "geometry/scroll_offset_unittest.cc", |
| 688 "geometry/size_unittest.cc", | 690 "geometry/size_unittest.cc", |
| 689 "geometry/vector2d_unittest.cc", | 691 "geometry/vector2d_unittest.cc", |
| 690 "geometry/vector3d_unittest.cc", | 692 "geometry/vector3d_unittest.cc", |
| 691 "image/image_mac_unittest.mm", | 693 "image/image_mac_unittest.mm", |
| 692 "image/image_util_unittest.cc", | 694 "image/image_util_unittest.cc", |
| 693 "mac/coordinate_conversion_unittest.mm", | 695 "mac/coordinate_conversion_unittest.mm", |
| 694 "nine_image_painter_unittest.cc", | 696 "nine_image_painter_unittest.cc", |
| 697 "path_mac_unittest.mm", |
| 695 "platform_font_mac_unittest.mm", | 698 "platform_font_mac_unittest.mm", |
| 696 "range/range_mac_unittest.mm", | 699 "range/range_mac_unittest.mm", |
| 697 "range/range_unittest.cc", | 700 "range/range_unittest.cc", |
| 698 "range/range_win_unittest.cc", | 701 "range/range_win_unittest.cc", |
| 699 "sequential_id_generator_unittest.cc", | 702 "sequential_id_generator_unittest.cc", |
| 700 "shadow_value_unittest.cc", | 703 "shadow_value_unittest.cc", |
| 701 "skbitmap_operations_unittest.cc", | 704 "skbitmap_operations_unittest.cc", |
| 702 "skrect_conversion_unittest.cc", | 705 "skrect_conversion_unittest.cc", |
| 703 "transform_util_unittest.cc", | 706 "transform_util_unittest.cc", |
| 704 "utf16_indexing_unittest.cc", | 707 "utf16_indexing_unittest.cc", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 if (is_android) { | 788 if (is_android) { |
| 786 generate_jni("gfx_jni_headers") { | 789 generate_jni("gfx_jni_headers") { |
| 787 sources = [ | 790 sources = [ |
| 788 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 791 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 789 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 792 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 790 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 793 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 791 ] | 794 ] |
| 792 jni_package = "gfx" | 795 jni_package = "gfx" |
| 793 } | 796 } |
| 794 } | 797 } |
| OLD | NEW |