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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 71 "display.cc", |
72 "display.h", | 72 "display.h", |
73 "display_change_notifier.cc", | 73 "display_change_notifier.cc", |
74 "display_change_notifier.h", | 74 "display_change_notifier.h", |
| 75 "display_finder.cc", |
| 76 "display_finder.h", |
75 "display_observer.cc", | 77 "display_observer.cc", |
76 "display_observer.h", | 78 "display_observer.h", |
77 "favicon_size.cc", | 79 "favicon_size.cc", |
78 "favicon_size.h", | 80 "favicon_size.h", |
79 "font.cc", | 81 "font.cc", |
80 "font.h", | 82 "font.h", |
81 "font_fallback.h", | 83 "font_fallback.h", |
82 "font_fallback_linux.cc", | 84 "font_fallback_linux.cc", |
83 "font_fallback_mac.mm", | 85 "font_fallback_mac.mm", |
84 "font_fallback_win.cc", | 86 "font_fallback_win.cc", |
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
784 if (is_android) { | 786 if (is_android) { |
785 generate_jni("gfx_jni_headers") { | 787 generate_jni("gfx_jni_headers") { |
786 sources = [ | 788 sources = [ |
787 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 789 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
788 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 790 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
789 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 791 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
790 ] | 792 ] |
791 jni_package = "gfx" | 793 jni_package = "gfx" |
792 } | 794 } |
793 } | 795 } |
OLD | NEW |