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 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "color_analysis.cc", | 72 "color_analysis.cc", |
73 "color_analysis.h", | 73 "color_analysis.h", |
74 "color_profile.cc", | 74 "color_profile.cc", |
75 "color_profile.h", | 75 "color_profile.h", |
76 "color_profile_mac.mm", | 76 "color_profile_mac.mm", |
77 "color_profile_win.cc", | 77 "color_profile_win.cc", |
78 "color_utils.cc", | 78 "color_utils.cc", |
79 "color_utils.h", | 79 "color_utils.h", |
80 "display.cc", | 80 "display.cc", |
81 "display.h", | 81 "display.h", |
| 82 "display_change_notifier.cc", |
| 83 "display_change_notifier.h", |
82 "display_observer.cc", | 84 "display_observer.cc", |
83 "display_observer.h", | 85 "display_observer.h", |
84 "favicon_size.cc", | 86 "favicon_size.cc", |
85 "favicon_size.h", | 87 "favicon_size.h", |
86 "font.cc", | 88 "font.cc", |
87 "font.h", | 89 "font.h", |
88 "font_fallback_win.cc", | 90 "font_fallback_win.cc", |
89 "font_fallback_win.h", | 91 "font_fallback_win.h", |
90 "font_list.cc", | 92 "font_list.cc", |
91 "font_list.h", | 93 "font_list.h", |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 if (is_android) { | 430 if (is_android) { |
429 generate_jni("gfx_jni_headers") { | 431 generate_jni("gfx_jni_headers") { |
430 sources = [ | 432 sources = [ |
431 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 433 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
432 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 434 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
433 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 435 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
434 ] | 436 ] |
435 jni_package = "gfx" | 437 jni_package = "gfx" |
436 } | 438 } |
437 } | 439 } |
OLD | NEW |