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

Side by Side Diff: components/infobars/core/BUILD.gn

Issue 2750743003: Move ui/gfx/animation/ into its own component. (Closed)
Patch Set: none 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 16 matching lines...) Expand all
27 "simple_alert_infobar_delegate.h", 27 "simple_alert_infobar_delegate.h",
28 ] 28 ]
29 29
30 public_deps = [ 30 public_deps = [
31 "//skia", 31 "//skia",
32 ] 32 ]
33 deps = [ 33 deps = [
34 "//base", 34 "//base",
35 "//ui/base", 35 "//ui/base",
36 "//ui/gfx", 36 "//ui/gfx",
37 "//ui/gfx/animation",
37 "//ui/strings", 38 "//ui/strings",
38 "//url", 39 "//url",
39 ] 40 ]
40 41
41 if (use_aura || (!is_ios && !is_android)) { 42 if (use_aura || (!is_ios && !is_android)) {
42 deps += [ "//ui/native_theme" ] 43 deps += [ "//ui/native_theme" ]
43 } 44 }
44 } 45 }
45 46
46 if (is_android) { 47 if (is_android) {
47 java_cpp_enum("infobar_enums_java") { 48 java_cpp_enum("infobar_enums_java") {
48 sources = [ 49 sources = [
49 "infobar_delegate.h", 50 "infobar_delegate.h",
50 ] 51 ]
51 } 52 }
52 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698