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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "screen.h", | 69 "screen.h", |
70 "screen_android.cc", | 70 "screen_android.cc", |
71 "screen_stub.cc", | 71 "screen_stub.cc", |
72 "screen_type_delegate.h", | 72 "screen_type_delegate.h", |
73 "sequential_id_generator.cc", | 73 "sequential_id_generator.cc", |
74 "sequential_id_generator.h", | 74 "sequential_id_generator.h", |
75 "shadow_value.cc", | 75 "shadow_value.cc", |
76 "shadow_value.h", | 76 "shadow_value.h", |
77 "skia_util.cc", | 77 "skia_util.cc", |
78 "skia_util.h", | 78 "skia_util.h", |
| 79 "swap_result.h", |
79 "transform.cc", | 80 "transform.cc", |
80 "transform.h", | 81 "transform.h", |
81 "transform_util.cc", | 82 "transform_util.cc", |
82 "transform_util.h", | 83 "transform_util.h", |
83 "ui_gfx_exports.cc", | 84 "ui_gfx_exports.cc", |
84 "vsync_provider.h", | 85 "vsync_provider.h", |
85 "win/hwnd_util.cc", | 86 "win/hwnd_util.cc", |
86 "win/hwnd_util.h", | 87 "win/hwnd_util.h", |
87 "win/scoped_set_map_mode.h", | 88 "win/scoped_set_map_mode.h", |
88 "win/singleton_hwnd.cc", | 89 "win/singleton_hwnd.cc", |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 if (is_android) { | 233 if (is_android) { |
233 generate_jni("gfx_jni_headers") { | 234 generate_jni("gfx_jni_headers") { |
234 sources = [ | 235 sources = [ |
235 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 236 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
236 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 237 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
237 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 238 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
238 ] | 239 ] |
239 jni_package = "gfx" | 240 jni_package = "gfx" |
240 } | 241 } |
241 } | 242 } |
OLD | NEW |