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", |
58 "canvas.cc", | 60 "canvas.cc", |
59 "canvas.h", | 61 "canvas.h", |
60 "canvas_notimplemented.cc", | 62 "canvas_notimplemented.cc", |
61 "canvas_paint_mac.h", | 63 "canvas_paint_mac.h", |
62 "canvas_paint_mac.mm", | 64 "canvas_paint_mac.mm", |
63 "canvas_skia.cc", | 65 "canvas_skia.cc", |
64 "canvas_skia_paint.h", | 66 "canvas_skia_paint.h", |
65 "codec/jpeg_codec.cc", | 67 "codec/jpeg_codec.cc", |
66 "codec/jpeg_codec.h", | 68 "codec/jpeg_codec.h", |
67 "codec/png_codec.cc", | 69 "codec/png_codec.cc", |
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 if (is_android) { | 630 if (is_android) { |
629 generate_jni("gfx_jni_headers") { | 631 generate_jni("gfx_jni_headers") { |
630 sources = [ | 632 sources = [ |
631 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 633 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
632 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 634 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
633 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 635 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
634 ] | 636 ] |
635 jni_package = "gfx" | 637 jni_package = "gfx" |
636 } | 638 } |
637 } | 639 } |
OLD | NEW |