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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 "font_list_impl.cc", | 94 "font_list_impl.cc", |
95 "font_list_impl.h", | 95 "font_list_impl.h", |
96 "font_render_params.cc", | 96 "font_render_params.cc", |
97 "font_render_params.h", | 97 "font_render_params.h", |
98 "font_render_params_android.cc", | 98 "font_render_params_android.cc", |
99 "font_render_params_linux.cc", | 99 "font_render_params_linux.cc", |
100 "font_render_params_mac.cc", | 100 "font_render_params_mac.cc", |
101 "font_render_params_win.cc", | 101 "font_render_params_win.cc", |
102 "gdi_util.cc", | 102 "gdi_util.cc", |
103 "gdi_util.h", | 103 "gdi_util.h", |
| 104 "generic_shared_memory_tracing_id.cc", |
| 105 "generic_shared_memory_tracing_id.h", |
104 "gfx_paths.cc", | 106 "gfx_paths.cc", |
105 "gfx_paths.h", | 107 "gfx_paths.h", |
106 "gpu_memory_buffer.cc", | 108 "gpu_memory_buffer.cc", |
107 "gpu_memory_buffer.h", | 109 "gpu_memory_buffer.h", |
108 "hud_font.cc", | 110 "hud_font.cc", |
109 "hud_font.h", | 111 "hud_font.h", |
110 "icon_util.cc", | 112 "icon_util.cc", |
111 "icon_util.h", | 113 "icon_util.h", |
112 "image/canvas_image_source.cc", | 114 "image/canvas_image_source.cc", |
113 "image/canvas_image_source.h", | 115 "image/canvas_image_source.h", |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 if (is_android) { | 628 if (is_android) { |
627 generate_jni("gfx_jni_headers") { | 629 generate_jni("gfx_jni_headers") { |
628 sources = [ | 630 sources = [ |
629 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 631 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
630 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 632 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
631 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 633 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
632 ] | 634 ] |
633 jni_package = "gfx" | 635 jni_package = "gfx" |
634 } | 636 } |
635 } | 637 } |
OLD | NEW |