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

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

Issue 2103243002: Factor out ContentViewAndroidDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ScopedAnchorView Created 4 years, 5 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 "//base", 47 "//base",
48 "//cc", 48 "//cc",
49 "//skia", 49 "//skia",
50 "//ui/gfx", 50 "//ui/gfx",
51 "//ui/gfx/geometry", 51 "//ui/gfx/geometry",
52 ] 52 ]
53 } 53 }
54 54
55 generate_jni("ui_android_jni_headers") { 55 generate_jni("ui_android_jni_headers") {
56 sources = [ 56 sources = [
57 "java/src/org/chromium/ui/base/ViewAndroidDelegate.java",
57 "java/src/org/chromium/ui/base/WindowAndroid.java", 58 "java/src/org/chromium/ui/base/WindowAndroid.java",
58 "java/src/org/chromium/ui/resources/ResourceManager.java", 59 "java/src/org/chromium/ui/resources/ResourceManager.java",
59 ] 60 ]
60 jni_package = "ui_android" 61 jni_package = "ui_android"
61 } 62 }
62 63
63 java_cpp_enum("java_enums_srcjar") { 64 java_cpp_enum("java_enums_srcjar") {
64 sources = [ 65 sources = [
65 "../base/ime/text_input_type.h", 66 "../base/ime/text_input_type.h",
66 "../base/page_transition_types.h", 67 "../base/page_transition_types.h",
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 "//cc", 251 "//cc",
251 "//cc:test_support", 252 "//cc:test_support",
252 "//skia", 253 "//skia",
253 "//testing/gmock", 254 "//testing/gmock",
254 "//testing/gtest", 255 "//testing/gtest",
255 "//ui/base", 256 "//ui/base",
256 "//ui/gfx", 257 "//ui/gfx",
257 "//ui/resources:ui_test_pak", 258 "//ui/resources:ui_test_pak",
258 ] 259 ]
259 } 260 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698