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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "font.h", | 87 "font.h", |
88 "font_fallback_win.cc", | 88 "font_fallback_win.cc", |
89 "font_fallback_win.h", | 89 "font_fallback_win.h", |
90 "font_list.cc", | 90 "font_list.cc", |
91 "font_list.h", | 91 "font_list.h", |
92 "font_list_impl.cc", | 92 "font_list_impl.cc", |
93 "font_list_impl.h", | 93 "font_list_impl.h", |
94 "font_render_params_android.cc", | 94 "font_render_params_android.cc", |
95 "font_render_params_linux.cc", | 95 "font_render_params_linux.cc", |
96 "font_render_params_win.cc", | 96 "font_render_params_win.cc", |
| 97 "font_render_params.cc", |
97 "font_render_params.h", | 98 "font_render_params.h", |
98 "frame_time.h", | 99 "frame_time.h", |
99 "gdi_util.cc", | 100 "gdi_util.cc", |
100 "gdi_util.h", | 101 "gdi_util.h", |
101 "gfx_paths.cc", | 102 "gfx_paths.cc", |
102 "gfx_paths.h", | 103 "gfx_paths.h", |
103 "gpu_memory_buffer.cc", | 104 "gpu_memory_buffer.cc", |
104 "gpu_memory_buffer.h", | 105 "gpu_memory_buffer.h", |
105 "icon_util.cc", | 106 "icon_util.cc", |
106 "icon_util.h", | 107 "icon_util.h", |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 if (is_android) { | 414 if (is_android) { |
414 generate_jni("gfx_jni_headers") { | 415 generate_jni("gfx_jni_headers") { |
415 sources = [ | 416 sources = [ |
416 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 417 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
417 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 418 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
418 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 419 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
419 ] | 420 ] |
420 jni_package = "gfx" | 421 jni_package = "gfx" |
421 } | 422 } |
422 } | 423 } |
OLD | NEW |