| OLD | NEW |
| 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 assert(toolkit_views) | 7 assert(toolkit_views) |
| 8 | 8 |
| 9 component("views") { | 9 component("views") { |
| 10 output_name = "browser_ui_views" | 10 output_name = "browser_ui_views" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 deps = [ | 27 deps = [ |
| 28 "//base", | 28 "//base", |
| 29 "//chrome/app:command_ids", | 29 "//chrome/app:command_ids", |
| 30 "//content/public/browser", | 30 "//content/public/browser", |
| 31 "//printing/features", | 31 "//printing/features", |
| 32 "//skia", | 32 "//skia", |
| 33 "//ui/base", | 33 "//ui/base", |
| 34 "//ui/events", | 34 "//ui/events", |
| 35 "//ui/gfx", | 35 "//ui/gfx", |
| 36 "//ui/gfx/geometry", | 36 "//ui/gfx/geometry", |
| 37 "//ui/vector_icons", |
| 37 "//url", | 38 "//url", |
| 38 ] | 39 ] |
| 39 | 40 |
| 40 if (use_ash) { | 41 if (use_ash) { |
| 41 deps += [ "//ash" ] | 42 deps += [ "//ash" ] |
| 42 } | 43 } |
| 43 } | 44 } |
| OLD | NEW |