| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 "vsync_provider.h", | 215 "vsync_provider.h", |
| 216 "win/direct_write.cc", | 216 "win/direct_write.cc", |
| 217 "win/direct_write.h", | 217 "win/direct_write.h", |
| 218 "win/dpi.cc", | 218 "win/dpi.cc", |
| 219 "win/dpi.h", | 219 "win/dpi.h", |
| 220 "win/hwnd_util.cc", | 220 "win/hwnd_util.cc", |
| 221 "win/hwnd_util.h", | 221 "win/hwnd_util.h", |
| 222 "win/scoped_set_map_mode.h", | 222 "win/scoped_set_map_mode.h", |
| 223 "win/singleton_hwnd.cc", | 223 "win/singleton_hwnd.cc", |
| 224 "win/singleton_hwnd.h", | 224 "win/singleton_hwnd.h", |
| 225 "win/singleton_hwnd_observer.cc", |
| 226 "win/singleton_hwnd_observer.h", |
| 225 "win/window_impl.cc", | 227 "win/window_impl.cc", |
| 226 "win/window_impl.h", | 228 "win/window_impl.h", |
| 227 ] | 229 ] |
| 228 | 230 |
| 229 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 231 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 230 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 232 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 231 | 233 |
| 232 defines = [ "GFX_IMPLEMENTATION" ] | 234 defines = [ "GFX_IMPLEMENTATION" ] |
| 233 | 235 |
| 234 deps = [ | 236 deps = [ |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 if (is_android) { | 530 if (is_android) { |
| 529 generate_jni("gfx_jni_headers") { | 531 generate_jni("gfx_jni_headers") { |
| 530 sources = [ | 532 sources = [ |
| 531 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 533 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 532 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 534 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 533 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 535 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 534 ] | 536 ] |
| 535 jni_package = "gfx" | 537 jni_package = "gfx" |
| 536 } | 538 } |
| 537 } | 539 } |
| OLD | NEW |