| 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 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 752 "animation/multi_animation_unittest.cc", | 752 "animation/multi_animation_unittest.cc", |
| 753 "animation/slide_animation_unittest.cc", | 753 "animation/slide_animation_unittest.cc", |
| 754 "animation/tween_unittest.cc", | 754 "animation/tween_unittest.cc", |
| 755 "blit_unittest.cc", | 755 "blit_unittest.cc", |
| 756 "break_list_unittest.cc", | 756 "break_list_unittest.cc", |
| 757 "canvas_unittest.cc", | 757 "canvas_unittest.cc", |
| 758 "canvas_unittest_mac.mm", | 758 "canvas_unittest_mac.mm", |
| 759 "codec/jpeg_codec_unittest.cc", | 759 "codec/jpeg_codec_unittest.cc", |
| 760 "codec/png_codec_unittest.cc", | 760 "codec/png_codec_unittest.cc", |
| 761 "color_analysis_unittest.cc", | 761 "color_analysis_unittest.cc", |
| 762 "color_profile_mac_unittest.mm", | |
| 763 "color_utils_unittest.cc", | 762 "color_utils_unittest.cc", |
| 764 "font_fallback_mac_unittest.cc", | 763 "font_fallback_mac_unittest.cc", |
| 765 "font_list_unittest.cc", | 764 "font_list_unittest.cc", |
| 766 "geometry/box_unittest.cc", | 765 "geometry/box_unittest.cc", |
| 767 "geometry/cubic_bezier_unittest.cc", | 766 "geometry/cubic_bezier_unittest.cc", |
| 768 "geometry/insets_unittest.cc", | 767 "geometry/insets_unittest.cc", |
| 769 "geometry/matrix3_unittest.cc", | 768 "geometry/matrix3_unittest.cc", |
| 770 "geometry/point3_unittest.cc", | 769 "geometry/point3_unittest.cc", |
| 771 "geometry/point_unittest.cc", | 770 "geometry/point_unittest.cc", |
| 772 "geometry/quad_unittest.cc", | 771 "geometry/quad_unittest.cc", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 if (!use_aura && !is_ios) { | 836 if (!use_aura && !is_ios) { |
| 838 sources -= [ "nine_image_painter_unittest.cc" ] | 837 sources -= [ "nine_image_painter_unittest.cc" ] |
| 839 } | 838 } |
| 840 | 839 |
| 841 if (is_chromeos) { | 840 if (is_chromeos) { |
| 842 sources += [ "chromeos/codec/jpeg_codec_robust_slow_unittest.cc" ] | 841 sources += [ "chromeos/codec/jpeg_codec_robust_slow_unittest.cc" ] |
| 843 } | 842 } |
| 844 | 843 |
| 845 if (is_win) { | 844 if (is_win) { |
| 846 sources += [ | 845 sources += [ |
| 847 "color_profile_win_unittest.cc", | |
| 848 "font_fallback_win_unittest.cc", | 846 "font_fallback_win_unittest.cc", |
| 849 "icon_util_unittest.cc", | 847 "icon_util_unittest.cc", |
| 850 "icon_util_unittests.rc", | 848 "icon_util_unittests.rc", |
| 851 "path_win_unittest.cc", | 849 "path_win_unittest.cc", |
| 852 "platform_font_win_unittest.cc", | 850 "platform_font_win_unittest.cc", |
| 853 ] | 851 ] |
| 854 | 852 |
| 855 ldflags = [ | 853 ldflags = [ |
| 856 "/DELAYLOAD:d2d1.dll", | 854 "/DELAYLOAD:d2d1.dll", |
| 857 "/DELAYLOAD:d3d10_1.dll", | 855 "/DELAYLOAD:d3d10_1.dll", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 878 if (is_android) { | 876 if (is_android) { |
| 879 generate_jni("gfx_jni_headers") { | 877 generate_jni("gfx_jni_headers") { |
| 880 sources = [ | 878 sources = [ |
| 881 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 879 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 882 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 880 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 883 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 881 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 884 ] | 882 ] |
| 885 jni_package = "gfx" | 883 jni_package = "gfx" |
| 886 } | 884 } |
| 887 } | 885 } |
| OLD | NEW |