| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 component("blimp_client") { | 10 component("blimp_client") { |
| 11 sources = [ | 11 sources = [ |
| 12 "blimp_client_export.h", | 12 "blimp_client_export.h", |
| 13 "compositor/blimp_compositor.cc", | 13 "compositor/blimp_compositor.cc", |
| 14 "compositor/blimp_compositor.h", | 14 "compositor/blimp_compositor.h", |
| 15 "compositor/blimp_context_provider.cc", | 15 "compositor/blimp_context_provider.cc", |
| 16 "compositor/blimp_context_provider.h", | 16 "compositor/blimp_context_provider.h", |
| 17 "compositor/blimp_layer_tree_settings.cc", | 17 "compositor/blimp_layer_tree_settings.cc", |
| 18 "compositor/blimp_layer_tree_settings.h", | 18 "compositor/blimp_layer_tree_settings.h", |
| 19 "compositor/blimp_output_surface.cc", | 19 "compositor/blimp_output_surface.cc", |
| 20 "compositor/blimp_output_surface.h", | 20 "compositor/blimp_output_surface.h", |
| 21 "compositor/render_widget_message_processor.cc", | 21 "compositor/render_widget_message_processor.cc", |
| 22 "compositor/render_widget_message_processor.h", | 22 "compositor/render_widget_message_processor.h", |
| 23 "compositor/test/dummy_layer_driver.cc", | 23 "compositor/test/dummy_layer_driver.cc", |
| 24 "compositor/test/dummy_layer_driver.h", | 24 "compositor/test/dummy_layer_driver.h", |
| 25 "input/blimp_input_manager.cc", |
| 26 "input/blimp_input_manager.h", |
| 25 ] | 27 ] |
| 26 | 28 |
| 27 defines = [ "BLIMP_CLIENT_IMPLEMENTATION=1" ] | 29 defines = [ "BLIMP_CLIENT_IMPLEMENTATION=1" ] |
| 28 | 30 |
| 29 deps = [ | 31 deps = [ |
| 30 "//base", | 32 "//base", |
| 31 "//blimp/common:blimp_common", | 33 "//blimp/common:blimp_common", |
| 32 "//blimp/common/proto", | 34 "//blimp/common/proto", |
| 33 "//blimp/net:blimp_net", | 35 "//blimp/net:blimp_net", |
| 34 "//cc", | 36 "//cc", |
| 35 "//cc/proto", | 37 "//cc/proto", |
| 36 "//gpu/command_buffer/client:gl_in_process_context", | 38 "//gpu/command_buffer/client:gl_in_process_context", |
| 37 "//gpu/command_buffer/common:gles2_utils", | 39 "//gpu/command_buffer/common:gles2_utils", |
| 38 "//gpu/skia_bindings", | 40 "//gpu/skia_bindings", |
| 41 "//ui/events", |
| 42 "//ui/events/blink", |
| 43 "//ui/events/gestures/blink", |
| 39 "//ui/gfx/geometry", | 44 "//ui/gfx/geometry", |
| 40 "//ui/gl", | 45 "//ui/gl", |
| 41 "//url:url", | 46 "//url:url", |
| 42 ] | 47 ] |
| 43 } | 48 } |
| 44 | 49 |
| 45 source_set("unit_tests") { | 50 source_set("unit_tests") { |
| 46 testonly = true | 51 testonly = true |
| 47 | 52 |
| 48 sources = [ | 53 sources = [ |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 apk_name = "BlimpTest" | 241 apk_name = "BlimpTest" |
| 237 apk_under_test = ":blimp_apk" | 242 apk_under_test = ":blimp_apk" |
| 238 android_manifest = blimp_test_apk_manifest | 243 android_manifest = blimp_test_apk_manifest |
| 239 deps = [ | 244 deps = [ |
| 240 ":blimp_test_apk_manifest", | 245 ":blimp_test_apk_manifest", |
| 241 ":blimp_test_java", | 246 ":blimp_test_java", |
| 242 google_play_services_resources, | 247 google_play_services_resources, |
| 243 ] | 248 ] |
| 244 } | 249 } |
| 245 } | 250 } |
| OLD | NEW |