| 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 24 matching lines...) Expand all Loading... |
| 35 "android/shared_device_display_info.h", | 35 "android/shared_device_display_info.h", |
| 36 "android/view_configuration.cc", | 36 "android/view_configuration.cc", |
| 37 "android/view_configuration.h", | 37 "android/view_configuration.h", |
| 38 "animation/animation.cc", | 38 "animation/animation.cc", |
| 39 "animation/animation.h", | 39 "animation/animation.h", |
| 40 "animation/animation_container.cc", | 40 "animation/animation_container.cc", |
| 41 "animation/animation_container.h", | 41 "animation/animation_container.h", |
| 42 "animation/animation_container_element.h", | 42 "animation/animation_container_element.h", |
| 43 "animation/animation_container_observer.h", | 43 "animation/animation_container_observer.h", |
| 44 "animation/animation_delegate.h", | 44 "animation/animation_delegate.h", |
| 45 "animation/animation_mac.mm", |
| 46 "animation/animation_win.cc", |
| 45 "animation/linear_animation.cc", | 47 "animation/linear_animation.cc", |
| 46 "animation/linear_animation.h", | 48 "animation/linear_animation.h", |
| 47 "animation/multi_animation.cc", | 49 "animation/multi_animation.cc", |
| 48 "animation/multi_animation.h", | 50 "animation/multi_animation.h", |
| 49 "animation/slide_animation.cc", | 51 "animation/slide_animation.cc", |
| 50 "animation/slide_animation.h", | 52 "animation/slide_animation.h", |
| 51 "animation/throb_animation.cc", | 53 "animation/throb_animation.cc", |
| 52 "animation/throb_animation.h", | 54 "animation/throb_animation.h", |
| 53 "animation/tween.cc", | 55 "animation/tween.cc", |
| 54 "animation/tween.h", | 56 "animation/tween.h", |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 if (is_android) { | 781 if (is_android) { |
| 780 generate_jni("gfx_jni_headers") { | 782 generate_jni("gfx_jni_headers") { |
| 781 sources = [ | 783 sources = [ |
| 782 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 784 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 783 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 785 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 784 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 786 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 785 ] | 787 ] |
| 786 jni_package = "gfx" | 788 jni_package = "gfx" |
| 787 } | 789 } |
| 788 } | 790 } |
| OLD | NEW |