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

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

Issue 2527443002: Display Compositor: Allocate LocalFrameId in client. (Closed)
Patch Set: Addressed sadrul's comment Created 4 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
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 ] 44 ]
45 45
46 defines = [ "UI_ANDROID_IMPLEMENTATION" ] 46 defines = [ "UI_ANDROID_IMPLEMENTATION" ]
47 47
48 deps = [ 48 deps = [
49 ":java_enums_srcjar", 49 ":java_enums_srcjar",
50 ":ui_android_jni_headers", 50 ":ui_android_jni_headers",
51 "//base", 51 "//base",
52 "//cc", 52 "//cc",
53 "//cc/surfaces", 53 "//cc/surfaces",
54 "//cc/surfaces:surface_id",
54 "//skia", 55 "//skia",
55 "//ui/display", 56 "//ui/display",
56 "//ui/gfx", 57 "//ui/gfx",
57 "//ui/gfx/geometry", 58 "//ui/gfx/geometry",
58 ] 59 ]
59 } 60 }
60 61
61 generate_jni("ui_android_jni_headers") { 62 generate_jni("ui_android_jni_headers") {
62 sources = [ 63 sources = [
63 "java/src/org/chromium/ui/base/ViewAndroidDelegate.java", 64 "java/src/org/chromium/ui/base/ViewAndroidDelegate.java",
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 "//cc", 229 "//cc",
229 "//cc:test_support", 230 "//cc:test_support",
230 "//skia", 231 "//skia",
231 "//testing/gmock", 232 "//testing/gmock",
232 "//testing/gtest", 233 "//testing/gtest",
233 "//ui/base", 234 "//ui/base",
234 "//ui/gfx", 235 "//ui/gfx",
235 "//ui/resources:ui_test_pak", 236 "//ui/resources:ui_test_pak",
236 ] 237 ]
237 } 238 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698