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

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

Issue 2190033002: content: Add ContextProviderFactory to create a render ContextProvider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: .. Created 4 years, 4 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") {
11 output_name = "ui_android" 11 output_name = "ui_android"
12 sources = [ 12 sources = [
13 "animation_utils.h", 13 "animation_utils.h",
14 "context_provider_factory.cc",
15 "context_provider_factory.h",
14 "edge_effect.cc", 16 "edge_effect.cc",
15 "edge_effect.h", 17 "edge_effect.h",
16 "edge_effect_base.cc", 18 "edge_effect_base.cc",
17 "edge_effect_base.h", 19 "edge_effect_base.h",
18 "edge_effect_l.cc", 20 "edge_effect_l.cc",
19 "edge_effect_l.h", 21 "edge_effect_l.h",
20 "overscroll_glow.cc", 22 "overscroll_glow.cc",
21 "overscroll_glow.h", 23 "overscroll_glow.h",
22 "overscroll_refresh.cc", 24 "overscroll_refresh.cc",
23 "overscroll_refresh.h", 25 "overscroll_refresh.h",
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 "//cc", 252 "//cc",
251 "//cc:test_support", 253 "//cc:test_support",
252 "//skia", 254 "//skia",
253 "//testing/gmock", 255 "//testing/gmock",
254 "//testing/gtest", 256 "//testing/gtest",
255 "//ui/base", 257 "//ui/base",
256 "//ui/gfx", 258 "//ui/gfx",
257 "//ui/resources:ui_test_pak", 259 "//ui/resources:ui_test_pak",
258 ] 260 ]
259 } 261 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698