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