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

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: format fix. 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') | blimp/client/compositor/blimp_compositor.cc » ('J')
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_manager.cc",
26 "input/blimp_input_manager.h",
25 "navigation_message_processor.cc", 27 "navigation_message_processor.cc",
26 "navigation_message_processor.h", 28 "navigation_message_processor.h",
27 ] 29 ]
28 30
29 defines = [ "BLIMP_CLIENT_IMPLEMENTATION=1" ] 31 defines = [ "BLIMP_CLIENT_IMPLEMENTATION=1" ]
30 32
31 deps = [ 33 deps = [
32 "//base", 34 "//base",
33 "//blimp/common:blimp_common", 35 "//blimp/common:blimp_common",
34 "//blimp/common/proto", 36 "//blimp/common/proto",
35 "//blimp/net:blimp_net", 37 "//blimp/net:blimp_net",
36 "//cc", 38 "//cc",
37 "//cc/proto", 39 "//cc/proto",
38 "//gpu/command_buffer/client:gl_in_process_context", 40 "//gpu/command_buffer/client:gl_in_process_context",
39 "//gpu/command_buffer/common:gles2_utils", 41 "//gpu/command_buffer/common:gles2_utils",
40 "//gpu/skia_bindings", 42 "//gpu/skia_bindings",
43 "//ui/events",
44 "//ui/events/blink",
45 "//ui/events/gestures/blink",
41 "//ui/gfx/geometry", 46 "//ui/gfx/geometry",
42 "//ui/gl", 47 "//ui/gl",
43 "//url:url", 48 "//url:url",
44 ] 49 ]
45 } 50 }
46 51
47 source_set("unit_tests") { 52 source_set("unit_tests") {
48 testonly = true 53 testonly = true
49 54
50 sources = [ 55 sources = [
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 apk_name = "BlimpTest" 247 apk_name = "BlimpTest"
243 apk_under_test = ":blimp_apk" 248 apk_under_test = ":blimp_apk"
244 android_manifest = blimp_test_apk_manifest 249 android_manifest = blimp_test_apk_manifest
245 deps = [ 250 deps = [
246 ":blimp_test_apk_manifest", 251 ":blimp_test_apk_manifest",
247 ":blimp_test_java", 252 ":blimp_test_java",
248 google_play_services_resources, 253 google_play_services_resources,
249 ] 254 ]
250 } 255 }
251 } 256 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/DEPS » ('j') | blimp/client/compositor/blimp_compositor.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698