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

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

Issue 2746483003: ui/android: Fix Resource meta-data sharing with ResourceManager. (Closed)
Patch Set: address comments Created 3 years, 9 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 11 matching lines...) Expand all
22 "edge_effect_l.cc", 22 "edge_effect_l.cc",
23 "edge_effect_l.h", 23 "edge_effect_l.h",
24 "overscroll_glow.cc", 24 "overscroll_glow.cc",
25 "overscroll_glow.h", 25 "overscroll_glow.h",
26 "overscroll_refresh.cc", 26 "overscroll_refresh.cc",
27 "overscroll_refresh.h", 27 "overscroll_refresh.h",
28 "overscroll_refresh_handler.cc", 28 "overscroll_refresh_handler.cc",
29 "overscroll_refresh_handler.h", 29 "overscroll_refresh_handler.h",
30 "resources/crushed_sprite_resource.cc", 30 "resources/crushed_sprite_resource.cc",
31 "resources/crushed_sprite_resource.h", 31 "resources/crushed_sprite_resource.h",
32 "resources/resource_manager.cc", 32 "resources/nine_patch_resource.cc",
33 "resources/nine_patch_resource.h",
34 "resources/resource.cc",
35 "resources/resource.h",
33 "resources/resource_manager.h", 36 "resources/resource_manager.h",
34 "resources/resource_manager_impl.cc", 37 "resources/resource_manager_impl.cc",
35 "resources/resource_manager_impl.h", 38 "resources/resource_manager_impl.h",
36 "resources/ui_resource_provider.h", 39 "resources/ui_resource_provider.h",
37 "screen_android.h", 40 "screen_android.h",
38 "ui_android_export.h", 41 "ui_android_export.h",
39 "ui_android_jni_registrar.cc", 42 "ui_android_jni_registrar.cc",
40 "ui_android_jni_registrar.h", 43 "ui_android_jni_registrar.h",
41 "view_android.cc", 44 "view_android.cc",
42 "view_android.h", 45 "view_android.h",
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 "//cc", 258 "//cc",
256 "//cc:test_support", 259 "//cc:test_support",
257 "//skia", 260 "//skia",
258 "//testing/gmock", 261 "//testing/gmock",
259 "//testing/gtest", 262 "//testing/gtest",
260 "//ui/base", 263 "//ui/base",
261 "//ui/gfx", 264 "//ui/gfx",
262 "//ui/resources:ui_test_pak", 265 "//ui/resources:ui_test_pak",
263 ] 266 ]
264 } 267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698