Chromium Code Reviews| 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 static_library("test_support") { | 5 group("demo") { |
| 6 deps = [ | |
| 7 ":ozone_demo", | |
| 8 ] | |
| 9 } | |
| 10 | |
| 11 executable("ozone_demo") { | |
| 6 sources = [ | 12 sources = [ |
| 7 "infobar_test.cc", | 13 "ozone_demo.cc", |
| 8 ] | 14 ] |
| 9 | 15 |
| 10 deps = [ | 16 deps = [ |
| 11 "//base", | 17 "//base", |
| 12 "//skia", | 18 "//skia", |
| 19 "//ui/gfx/geometry", | |
| 20 "//ui/gl", | |
| 21 "//ui/ozone", | |
| 13 ] | 22 ] |
| 14 } | 23 } |
| OLD | NEW |