| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "codec/png_codec.h", | 61 "codec/png_codec.h", |
| 62 "color_analysis.cc", | 62 "color_analysis.cc", |
| 63 "color_analysis.h", | 63 "color_analysis.h", |
| 64 "color_palette.h", | 64 "color_palette.h", |
| 65 "color_profile.cc", | 65 "color_profile.cc", |
| 66 "color_profile.h", | 66 "color_profile.h", |
| 67 "color_profile_mac.mm", | 67 "color_profile_mac.mm", |
| 68 "color_profile_win.cc", | 68 "color_profile_win.cc", |
| 69 "color_utils.cc", | 69 "color_utils.cc", |
| 70 "color_utils.h", | 70 "color_utils.h", |
| 71 "display.cc", | |
| 72 "display.h", | |
| 73 "favicon_size.cc", | 71 "favicon_size.cc", |
| 74 "favicon_size.h", | 72 "favicon_size.h", |
| 75 "font.cc", | 73 "font.cc", |
| 76 "font.h", | 74 "font.h", |
| 77 "font_fallback.h", | 75 "font_fallback.h", |
| 78 "font_fallback_linux.cc", | 76 "font_fallback_linux.cc", |
| 79 "font_fallback_linux.h", | 77 "font_fallback_linux.h", |
| 80 "font_fallback_mac.mm", | 78 "font_fallback_mac.mm", |
| 81 "font_fallback_win.cc", | 79 "font_fallback_win.cc", |
| 82 "font_fallback_win.h", | 80 "font_fallback_win.h", |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 ] | 625 ] |
| 628 } | 626 } |
| 629 | 627 |
| 630 source_set("test_support") { | 628 source_set("test_support") { |
| 631 testonly = true | 629 testonly = true |
| 632 sources = [ | 630 sources = [ |
| 633 "image/image_unittest_util.cc", | 631 "image/image_unittest_util.cc", |
| 634 "image/image_unittest_util.h", | 632 "image/image_unittest_util.h", |
| 635 "image/image_unittest_util_ios.mm", | 633 "image/image_unittest_util_ios.mm", |
| 636 "image/image_unittest_util_mac.mm", | 634 "image/image_unittest_util_mac.mm", |
| 637 "test/display_util.h", | |
| 638 "test/fontconfig_util_linux.cc", | 635 "test/fontconfig_util_linux.cc", |
| 639 "test/fontconfig_util_linux.h", | 636 "test/fontconfig_util_linux.h", |
| 640 "test/gfx_util.cc", | 637 "test/gfx_util.cc", |
| 641 "test/gfx_util.h", | 638 "test/gfx_util.h", |
| 642 "test/ui_cocoa_test_helper.h", | 639 "test/ui_cocoa_test_helper.h", |
| 643 "test/ui_cocoa_test_helper.mm", | 640 "test/ui_cocoa_test_helper.mm", |
| 644 ] | 641 ] |
| 645 | 642 |
| 646 public_deps = [ | 643 public_deps = [ |
| 647 ":gfx", | 644 ":gfx", |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 if (is_android) { | 807 if (is_android) { |
| 811 generate_jni("gfx_jni_headers") { | 808 generate_jni("gfx_jni_headers") { |
| 812 sources = [ | 809 sources = [ |
| 813 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 810 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 814 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 811 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 815 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 812 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 816 ] | 813 ] |
| 817 jni_package = "gfx" | 814 jni_package = "gfx" |
| 818 } | 815 } |
| 819 } | 816 } |
| OLD | NEW |