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

Side by Side Diff: ui/android/BUILD.gn

Issue 2595263002: Introduce ViewRoot forwarding input/view events to native (Closed)
Patch Set: updateViewRoot, ... Created 3 years, 11 months 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
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 import("//build/config/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 assert(is_android) 8 assert(is_android)
9 9
10 component("android") { 10 component("android") {
(...skipping 26 matching lines...) Expand all
37 "resources/resource_manager_impl.h", 37 "resources/resource_manager_impl.h",
38 "resources/ui_resource_provider.h", 38 "resources/ui_resource_provider.h",
39 "screen_android.h", 39 "screen_android.h",
40 "ui_android_export.h", 40 "ui_android_export.h",
41 "ui_android_jni_registrar.cc", 41 "ui_android_jni_registrar.cc",
42 "ui_android_jni_registrar.h", 42 "ui_android_jni_registrar.h",
43 "view_android.cc", 43 "view_android.cc",
44 "view_android.h", 44 "view_android.h",
45 "view_client.cc", 45 "view_client.cc",
46 "view_client.h", 46 "view_client.h",
47 "view_root.cc",
48 "view_root.h",
47 "window_android.cc", 49 "window_android.cc",
48 "window_android.h", 50 "window_android.h",
49 "window_android_compositor.h", 51 "window_android_compositor.h",
50 "window_android_observer.h", 52 "window_android_observer.h",
51 ] 53 ]
52 54
53 defines = [ "UI_ANDROID_IMPLEMENTATION" ] 55 defines = [ "UI_ANDROID_IMPLEMENTATION" ]
54 56
55 deps = [ 57 deps = [
56 ":java_enums_srcjar", 58 ":java_enums_srcjar",
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 "//cc", 260 "//cc",
259 "//cc:test_support", 261 "//cc:test_support",
260 "//skia", 262 "//skia",
261 "//testing/gmock", 263 "//testing/gmock",
262 "//testing/gtest", 264 "//testing/gtest",
263 "//ui/base", 265 "//ui/base",
264 "//ui/gfx", 266 "//ui/gfx",
265 "//ui/resources:ui_test_pak", 267 "//ui/resources:ui_test_pak",
266 ] 268 ]
267 } 269 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698