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

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

Issue 1409833004: Add DeviceDisplayInfo getter in WindowAndroid. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed variable naming and jdduke nit. Created 5 years, 1 month 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") {
11 output_name = "ui_android" 11 output_name = "ui_android"
12 sources = [ 12 sources = [
13 "resources/resource_manager.cc", 13 "resources/resource_manager.cc",
14 "resources/resource_manager.h", 14 "resources/resource_manager.h",
15 "resources/resource_manager_impl.cc", 15 "resources/resource_manager_impl.cc",
16 "resources/resource_manager_impl.h", 16 "resources/resource_manager_impl.h",
17 "resources/ui_resource_provider.h", 17 "resources/ui_resource_provider.h",
18 "screen_android.cc",
18 "ui_android_export.h", 19 "ui_android_export.h",
19 "ui_android_jni_registrar.cc", 20 "ui_android_jni_registrar.cc",
20 "ui_android_jni_registrar.h", 21 "ui_android_jni_registrar.h",
21 "view_android.cc", 22 "view_android.cc",
22 "view_android.h", 23 "view_android.h",
23 "window_android.cc", 24 "window_android.cc",
24 "window_android.h", 25 "window_android.h",
25 "window_android_compositor.h", 26 "window_android_compositor.h",
26 "window_android_observer.h", 27 "window_android_observer.h",
27 ] 28 ]
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 "//cc:test_support", 160 "//cc:test_support",
160 "//skia", 161 "//skia",
161 "//testing/gmock", 162 "//testing/gmock",
162 "//testing/gtest", 163 "//testing/gtest",
163 "//ui/base", 164 "//ui/base",
164 "//ui/gfx", 165 "//ui/gfx",
165 "//ui/resources:ui_test_pak", 166 "//ui/resources:ui_test_pak",
166 ] 167 ]
167 apk_deps = [ ":ui_java" ] 168 apk_deps = [ ":ui_java" ]
168 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698