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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 "platform_font_ozone.cc", | 359 "platform_font_ozone.cc", |
360 ] | 360 ] |
361 } | 361 } |
362 } | 362 } |
363 | 363 |
364 # Looking for gfx_geometry? It's //ui/gfx/geometry:geometry | 364 # Looking for gfx_geometry? It's //ui/gfx/geometry:geometry |
365 | 365 |
366 source_set("test_support") { | 366 source_set("test_support") { |
367 testonly = true | 367 testonly = true |
368 sources = [ | 368 sources = [ |
| 369 "image/image_unittest_util.cc", |
| 370 "image/image_unittest_util.h", |
| 371 "image/image_unittest_util_ios.mm", |
| 372 "image/image_unittest_util_mac.mm", |
369 "test/fontconfig_util_linux.cc", | 373 "test/fontconfig_util_linux.cc", |
370 "test/fontconfig_util_linux.h", | 374 "test/fontconfig_util_linux.h", |
371 "test/gfx_util.cc", | 375 "test/gfx_util.cc", |
372 "test/gfx_util.h", | 376 "test/gfx_util.h", |
373 "test/ui_cocoa_test_helper.h", | 377 "test/ui_cocoa_test_helper.h", |
374 "test/ui_cocoa_test_helper.mm", | 378 "test/ui_cocoa_test_helper.mm", |
375 ] | 379 ] |
376 | 380 |
377 deps = [ | 381 deps = [ |
378 ":gfx", | 382 ":gfx", |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 if (is_android) { | 444 if (is_android) { |
441 generate_jni("gfx_jni_headers") { | 445 generate_jni("gfx_jni_headers") { |
442 sources = [ | 446 sources = [ |
443 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 447 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
444 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 448 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
445 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 449 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
446 ] | 450 ] |
447 jni_package = "gfx" | 451 jni_package = "gfx" |
448 } | 452 } |
449 } | 453 } |
OLD | NEW |