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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 testonly = true | 412 testonly = true |
413 sources = [ | 413 sources = [ |
414 "image/image_unittest_util.cc", | 414 "image/image_unittest_util.cc", |
415 "image/image_unittest_util.h", | 415 "image/image_unittest_util.h", |
416 "image/image_unittest_util_ios.mm", | 416 "image/image_unittest_util_ios.mm", |
417 "image/image_unittest_util_mac.mm", | 417 "image/image_unittest_util_mac.mm", |
418 "test/fontconfig_util_linux.cc", | 418 "test/fontconfig_util_linux.cc", |
419 "test/fontconfig_util_linux.h", | 419 "test/fontconfig_util_linux.h", |
420 "test/gfx_util.cc", | 420 "test/gfx_util.cc", |
421 "test/gfx_util.h", | 421 "test/gfx_util.h", |
| 422 "test/test_screen.cc", |
| 423 "test/test_screen.h", |
422 "test/ui_cocoa_test_helper.h", | 424 "test/ui_cocoa_test_helper.h", |
423 "test/ui_cocoa_test_helper.mm", | 425 "test/ui_cocoa_test_helper.mm", |
424 ] | 426 ] |
425 | 427 |
426 public_deps = [ | 428 public_deps = [ |
427 ":gfx", | 429 ":gfx", |
428 ] | 430 ] |
429 | 431 |
430 deps = [ | 432 deps = [ |
431 "//base", | 433 "//base", |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
585 if (is_android) { | 587 if (is_android) { |
586 generate_jni("gfx_jni_headers") { | 588 generate_jni("gfx_jni_headers") { |
587 sources = [ | 589 sources = [ |
588 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 590 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
589 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 591 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
590 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 592 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
591 ] | 593 ] |
592 jni_package = "gfx" | 594 jni_package = "gfx" |
593 } | 595 } |
594 } | 596 } |
OLD | NEW |