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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 testonly = true | 377 testonly = true |
378 sources = [ | 378 sources = [ |
379 "image/image_unittest_util.cc", | 379 "image/image_unittest_util.cc", |
380 "image/image_unittest_util.h", | 380 "image/image_unittest_util.h", |
381 "image/image_unittest_util_ios.mm", | 381 "image/image_unittest_util_ios.mm", |
382 "image/image_unittest_util_mac.mm", | 382 "image/image_unittest_util_mac.mm", |
383 "test/fontconfig_util_linux.cc", | 383 "test/fontconfig_util_linux.cc", |
384 "test/fontconfig_util_linux.h", | 384 "test/fontconfig_util_linux.h", |
385 "test/gfx_util.cc", | 385 "test/gfx_util.cc", |
386 "test/gfx_util.h", | 386 "test/gfx_util.h", |
| 387 "test/test_screen.cc", |
| 388 "test/test_screen.h", |
387 "test/ui_cocoa_test_helper.h", | 389 "test/ui_cocoa_test_helper.h", |
388 "test/ui_cocoa_test_helper.mm", | 390 "test/ui_cocoa_test_helper.mm", |
389 ] | 391 ] |
390 | 392 |
391 public_deps = [ | 393 public_deps = [ |
392 ":gfx", | 394 ":gfx", |
393 ] | 395 ] |
394 | 396 |
395 deps = [ | 397 deps = [ |
396 "//base", | 398 "//base", |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 if (is_android) { | 552 if (is_android) { |
551 generate_jni("gfx_jni_headers") { | 553 generate_jni("gfx_jni_headers") { |
552 sources = [ | 554 sources = [ |
553 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 555 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
554 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 556 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
555 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 557 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
556 ] | 558 ] |
557 jni_package = "gfx" | 559 jni_package = "gfx" |
558 } | 560 } |
559 } | 561 } |
OLD | NEW |