Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(601)

Side by Side Diff: blimp/client/BUILD.gn

Issue 1430623004: blimp: Add support for input handling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "Add dtor for BlimpInputHandlerWrapper" Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | blimp/client/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_handler_wrapper.cc",
26 "input/blimp_input_handler_wrapper.h",
27 "input/blimp_input_manager.cc",
28 "input/blimp_input_manager.h",
25 "navigation_message_processor.cc", 29 "navigation_message_processor.cc",
26 "navigation_message_processor.h", 30 "navigation_message_processor.h",
27 ] 31 ]
28 32
29 defines = [ "BLIMP_CLIENT_IMPLEMENTATION=1" ] 33 defines = [ "BLIMP_CLIENT_IMPLEMENTATION=1" ]
30 34
31 deps = [ 35 deps = [
32 "//base", 36 "//base",
33 "//blimp/common:blimp_common", 37 "//blimp/common:blimp_common",
34 "//blimp/common/proto", 38 "//blimp/common/proto",
35 "//blimp/net:blimp_net", 39 "//blimp/net:blimp_net",
36 "//cc", 40 "//cc",
37 "//cc/proto", 41 "//cc/proto",
38 "//gpu/command_buffer/client:gl_in_process_context", 42 "//gpu/command_buffer/client:gl_in_process_context",
39 "//gpu/command_buffer/common:gles2_utils", 43 "//gpu/command_buffer/common:gles2_utils",
40 "//gpu/skia_bindings", 44 "//gpu/skia_bindings",
45 "//ui/events",
tdresser 2015/12/07 14:32:44 There was a time when Android didn't depend on ui/
Khushal 2015/12/07 19:21:58 We actually need this for motion_event_android.h w
46 "//ui/events/blink",
47 "//ui/events/gestures/blink",
41 "//ui/gfx/geometry", 48 "//ui/gfx/geometry",
42 "//ui/gl", 49 "//ui/gl",
43 "//url:url", 50 "//url:url",
44 ] 51 ]
45 } 52 }
46 53
47 source_set("unit_tests") { 54 source_set("unit_tests") {
48 testonly = true 55 testonly = true
49 56
50 sources = [ 57 sources = [
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 apk_name = "BlimpTest" 249 apk_name = "BlimpTest"
243 apk_under_test = ":blimp_apk" 250 apk_under_test = ":blimp_apk"
244 android_manifest = blimp_test_apk_manifest 251 android_manifest = blimp_test_apk_manifest
245 deps = [ 252 deps = [
246 ":blimp_test_apk_manifest", 253 ":blimp_test_apk_manifest",
247 ":blimp_test_java", 254 ":blimp_test_java",
248 google_play_services_resources, 255 google_play_services_resources,
249 ] 256 ]
250 } 257 }
251 } 258 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698