| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "animation/multi_animation.h", | 48 "animation/multi_animation.h", |
| 49 "animation/slide_animation.cc", | 49 "animation/slide_animation.cc", |
| 50 "animation/slide_animation.h", | 50 "animation/slide_animation.h", |
| 51 "animation/throb_animation.cc", | 51 "animation/throb_animation.cc", |
| 52 "animation/throb_animation.h", | 52 "animation/throb_animation.h", |
| 53 "animation/tween.cc", | 53 "animation/tween.cc", |
| 54 "animation/tween.h", | 54 "animation/tween.h", |
| 55 "blit.cc", | 55 "blit.cc", |
| 56 "blit.h", | 56 "blit.h", |
| 57 "break_list.h", | 57 "break_list.h", |
| 58 "buffer_format_util.cc", | |
| 59 "buffer_format_util.h", | |
| 60 "canvas.cc", | 58 "canvas.cc", |
| 61 "canvas.h", | 59 "canvas.h", |
| 62 "canvas_notimplemented.cc", | 60 "canvas_notimplemented.cc", |
| 63 "canvas_paint_mac.h", | 61 "canvas_paint_mac.h", |
| 64 "canvas_paint_mac.mm", | 62 "canvas_paint_mac.mm", |
| 65 "canvas_skia.cc", | 63 "canvas_skia.cc", |
| 66 "canvas_skia_paint.h", | 64 "canvas_skia_paint.h", |
| 67 "codec/jpeg_codec.cc", | 65 "codec/jpeg_codec.cc", |
| 68 "codec/jpeg_codec.h", | 66 "codec/jpeg_codec.h", |
| 69 "codec/png_codec.cc", | 67 "codec/png_codec.cc", |
| (...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 if (is_android) { | 626 if (is_android) { |
| 629 generate_jni("gfx_jni_headers") { | 627 generate_jni("gfx_jni_headers") { |
| 630 sources = [ | 628 sources = [ |
| 631 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 629 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 632 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 630 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 633 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 631 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 634 ] | 632 ] |
| 635 jni_package = "gfx" | 633 jni_package = "gfx" |
| 636 } | 634 } |
| 637 } | 635 } |
| OLD | NEW |