OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 20 matching lines...) Expand all Loading... |
31 ] | 31 ] |
32 | 32 |
33 deps = [ | 33 deps = [ |
34 ":feature", | 34 ":feature", |
35 "//base", | 35 "//base", |
36 "//blimp/common/proto", | 36 "//blimp/common/proto", |
37 "//blimp/net:blimp_net", | 37 "//blimp/net:blimp_net", |
38 "//cc", | 38 "//cc", |
39 "//gpu/skia_bindings", | 39 "//gpu/skia_bindings", |
40 "//net", | 40 "//net", |
| 41 "//third_party/libwebp", |
41 "//ui/gfx/geometry", | 42 "//ui/gfx/geometry", |
42 "//url:url", | 43 "//url:url", |
43 ] | 44 ] |
44 } | 45 } |
45 | 46 |
46 source_set("app_unit_tests") { | 47 source_set("app_unit_tests") { |
47 testonly = true | 48 testonly = true |
48 | 49 |
49 sources = [ | 50 sources = [ |
50 "app/blimp_discardable_memory_allocator_unittest.cc", | 51 "app/blimp_discardable_memory_allocator_unittest.cc", |
(...skipping 18 matching lines...) Expand all Loading... |
69 "feature/compositor/blimp_gpu_memory_buffer_manager.cc", | 70 "feature/compositor/blimp_gpu_memory_buffer_manager.cc", |
70 "feature/compositor/blimp_gpu_memory_buffer_manager.h", | 71 "feature/compositor/blimp_gpu_memory_buffer_manager.h", |
71 "feature/compositor/blimp_input_handler_wrapper.cc", | 72 "feature/compositor/blimp_input_handler_wrapper.cc", |
72 "feature/compositor/blimp_input_handler_wrapper.h", | 73 "feature/compositor/blimp_input_handler_wrapper.h", |
73 "feature/compositor/blimp_input_manager.cc", | 74 "feature/compositor/blimp_input_manager.cc", |
74 "feature/compositor/blimp_input_manager.h", | 75 "feature/compositor/blimp_input_manager.h", |
75 "feature/compositor/blimp_layer_tree_settings.cc", | 76 "feature/compositor/blimp_layer_tree_settings.cc", |
76 "feature/compositor/blimp_layer_tree_settings.h", | 77 "feature/compositor/blimp_layer_tree_settings.h", |
77 "feature/compositor/blimp_output_surface.cc", | 78 "feature/compositor/blimp_output_surface.cc", |
78 "feature/compositor/blimp_output_surface.h", | 79 "feature/compositor/blimp_output_surface.h", |
| 80 "feature/compositor/decoding_image_generator.cc", |
| 81 "feature/compositor/decoding_image_generator.h", |
79 "feature/navigation_feature.cc", | 82 "feature/navigation_feature.cc", |
80 "feature/navigation_feature.h", | 83 "feature/navigation_feature.h", |
81 "feature/render_widget_feature.cc", | 84 "feature/render_widget_feature.cc", |
82 "feature/render_widget_feature.h", | 85 "feature/render_widget_feature.h", |
83 "feature/tab_control_feature.cc", | 86 "feature/tab_control_feature.cc", |
84 "feature/tab_control_feature.h", | 87 "feature/tab_control_feature.h", |
85 ] | 88 ] |
86 | 89 |
87 deps = [ | 90 deps = [ |
88 "//blimp/common:blimp_common", | 91 "//blimp/common:blimp_common", |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 apk_name = "BlimpTest" | 353 apk_name = "BlimpTest" |
351 apk_under_test = ":blimp_apk" | 354 apk_under_test = ":blimp_apk" |
352 android_manifest = blimp_test_apk_manifest | 355 android_manifest = blimp_test_apk_manifest |
353 deps = [ | 356 deps = [ |
354 ":blimp_test_apk_manifest", | 357 ":blimp_test_apk_manifest", |
355 ":blimp_test_java", | 358 ":blimp_test_java", |
356 google_play_services_resources, | 359 google_play_services_resources, |
357 ] | 360 ] |
358 } | 361 } |
359 } | 362 } |
OLD | NEW |