| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 if (is_android) { | 415 if (is_android) { |
| 414 generate_jni("gfx_jni_headers") { | 416 generate_jni("gfx_jni_headers") { |
| 415 sources = [ | 417 sources = [ |
| 416 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 418 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 417 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 419 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 418 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 420 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 419 ] | 421 ] |
| 420 jni_package = "gfx" | 422 jni_package = "gfx" |
| 421 } | 423 } |
| 422 } | 424 } |
| OLD | NEW |