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

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

Issue 2506093003: CC Animation: Make cc/animation an independent GN component. (Closed)
Patch Set: Import compiler.gni Created 4 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") {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "window_android_observer.h", 46 "window_android_observer.h",
47 ] 47 ]
48 48
49 defines = [ "UI_ANDROID_IMPLEMENTATION" ] 49 defines = [ "UI_ANDROID_IMPLEMENTATION" ]
50 50
51 deps = [ 51 deps = [
52 ":java_enums_srcjar", 52 ":java_enums_srcjar",
53 ":ui_android_jni_headers", 53 ":ui_android_jni_headers",
54 "//base", 54 "//base",
55 "//cc", 55 "//cc",
56 "//cc/animation",
56 "//cc/surfaces", 57 "//cc/surfaces",
57 "//skia", 58 "//skia",
58 "//ui/display", 59 "//ui/display",
59 "//ui/gfx", 60 "//ui/gfx",
60 "//ui/gfx/geometry", 61 "//ui/gfx/geometry",
61 ] 62 ]
62 } 63 }
63 64
64 static_library("test_support") { 65 static_library("test_support") {
65 testonly = true 66 testonly = true
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 "//cc", 245 "//cc",
245 "//cc:test_support", 246 "//cc:test_support",
246 "//skia", 247 "//skia",
247 "//testing/gmock", 248 "//testing/gmock",
248 "//testing/gtest", 249 "//testing/gtest",
249 "//ui/base", 250 "//ui/base",
250 "//ui/gfx", 251 "//ui/gfx",
251 "//ui/resources:ui_test_pak", 252 "//ui/resources:ui_test_pak",
252 ] 253 ]
253 } 254 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698