| 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 22 matching lines...) Expand all Loading... |
| 33 "android/shared_device_display_info.h", | 33 "android/shared_device_display_info.h", |
| 34 "android/view_configuration.cc", | 34 "android/view_configuration.cc", |
| 35 "android/view_configuration.h", | 35 "android/view_configuration.h", |
| 36 "animation/animation.cc", | 36 "animation/animation.cc", |
| 37 "animation/animation.h", | 37 "animation/animation.h", |
| 38 "animation/animation_container.cc", | 38 "animation/animation_container.cc", |
| 39 "animation/animation_container.h", | 39 "animation/animation_container.h", |
| 40 "animation/animation_container_element.h", | 40 "animation/animation_container_element.h", |
| 41 "animation/animation_container_observer.h", | 41 "animation/animation_container_observer.h", |
| 42 "animation/animation_delegate.h", | 42 "animation/animation_delegate.h", |
| 43 "animation/cubic_bezier.h", |
| 44 "animation/cubic_bezier.cc", |
| 43 "animation/linear_animation.cc", | 45 "animation/linear_animation.cc", |
| 44 "animation/linear_animation.h", | 46 "animation/linear_animation.h", |
| 45 "animation/multi_animation.cc", | 47 "animation/multi_animation.cc", |
| 46 "animation/multi_animation.h", | 48 "animation/multi_animation.h", |
| 47 "animation/slide_animation.cc", | 49 "animation/slide_animation.cc", |
| 48 "animation/slide_animation.h", | 50 "animation/slide_animation.h", |
| 51 "animation/steps.cc", |
| 52 "animation/steps.h", |
| 49 "animation/throb_animation.cc", | 53 "animation/throb_animation.cc", |
| 50 "animation/throb_animation.h", | 54 "animation/throb_animation.h", |
| 51 "animation/tween.cc", | 55 "animation/tween.cc", |
| 52 "animation/tween.h", | 56 "animation/tween.h", |
| 53 "blit.cc", | 57 "blit.cc", |
| 54 "blit.h", | 58 "blit.h", |
| 55 "break_list.h", | 59 "break_list.h", |
| 56 "canvas.cc", | 60 "canvas.cc", |
| 57 "canvas.h", | 61 "canvas.h", |
| 58 "canvas_notimplemented.cc", | 62 "canvas_notimplemented.cc", |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 "test/ui_cocoa_test_helper.mm", | 398 "test/ui_cocoa_test_helper.mm", |
| 395 ] | 399 ] |
| 396 } | 400 } |
| 397 if (is_linux) { | 401 if (is_linux) { |
| 398 configs += [ "//build/config/linux:fontconfig" ] | 402 configs += [ "//build/config/linux:fontconfig" ] |
| 399 } | 403 } |
| 400 } | 404 } |
| 401 | 405 |
| 402 test("gfx_unittests") { | 406 test("gfx_unittests") { |
| 403 sources = [ | 407 sources = [ |
| 408 "animation/cubic_bezier_unittest.cc", |
| 409 "animation/steps_unittest.cc", |
| 404 "geometry/box_unittest.cc", | 410 "geometry/box_unittest.cc", |
| 405 "geometry/cubic_bezier_unittest.cc", | |
| 406 "geometry/insets_unittest.cc", | 411 "geometry/insets_unittest.cc", |
| 407 "geometry/matrix3_unittest.cc", | 412 "geometry/matrix3_unittest.cc", |
| 408 "geometry/point_unittest.cc", | 413 "geometry/point_unittest.cc", |
| 409 "geometry/point3_unittest.cc", | 414 "geometry/point3_unittest.cc", |
| 410 "geometry/quad_unittest.cc", | 415 "geometry/quad_unittest.cc", |
| 411 "geometry/rect_unittest.cc", | 416 "geometry/rect_unittest.cc", |
| 412 "geometry/safe_integer_conversions_unittest.cc", | 417 "geometry/safe_integer_conversions_unittest.cc", |
| 413 "geometry/size_unittest.cc", | 418 "geometry/size_unittest.cc", |
| 414 "geometry/vector2d_unittest.cc", | 419 "geometry/vector2d_unittest.cc", |
| 415 "geometry/vector3d_unittest.cc", | 420 "geometry/vector3d_unittest.cc", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 444 if (is_android) { | 449 if (is_android) { |
| 445 generate_jni("gfx_jni_headers") { | 450 generate_jni("gfx_jni_headers") { |
| 446 sources = [ | 451 sources = [ |
| 447 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 452 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 448 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 453 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 449 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 454 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 450 ] | 455 ] |
| 451 jni_package = "gfx" | 456 jni_package = "gfx" |
| 452 } | 457 } |
| 453 } | 458 } |
| OLD | NEW |