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

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: fix build error. 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
35 public_deps = [
36 "//ui/events",
37 ]
38
31 deps = [ 39 deps = [
32 "//base", 40 "//base",
33 "//blimp/common:blimp_common", 41 "//blimp/common:blimp_common",
34 "//blimp/common/proto", 42 "//blimp/common/proto",
35 "//blimp/net:blimp_net", 43 "//blimp/net:blimp_net",
36 "//cc", 44 "//cc",
37 "//cc/proto", 45 "//cc/proto",
38 "//gpu/command_buffer/client:gl_in_process_context", 46 "//gpu/command_buffer/client:gl_in_process_context",
39 "//gpu/command_buffer/common:gles2_utils", 47 "//gpu/command_buffer/common:gles2_utils",
40 "//gpu/skia_bindings", 48 "//gpu/skia_bindings",
49 "//ui/events/blink",
50 "//ui/events/gestures/blink",
41 "//ui/gfx/geometry", 51 "//ui/gfx/geometry",
42 "//ui/gl", 52 "//ui/gl",
43 "//url:url", 53 "//url:url",
44 ] 54 ]
45 } 55 }
46 56
47 source_set("unit_tests") { 57 source_set("unit_tests") {
48 testonly = true 58 testonly = true
49 59
50 sources = [ 60 sources = [
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 apk_name = "BlimpTest" 253 apk_name = "BlimpTest"
244 apk_under_test = ":blimp_apk" 254 apk_under_test = ":blimp_apk"
245 android_manifest = blimp_test_apk_manifest 255 android_manifest = blimp_test_apk_manifest
246 deps = [ 256 deps = [
247 ":blimp_test_apk_manifest", 257 ":blimp_test_apk_manifest",
248 ":blimp_test_java", 258 ":blimp_test_java",
249 google_play_services_resources, 259 google_play_services_resources,
250 ] 260 ]
251 } 261 }
252 } 262 }
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