OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 component("ozone") { |
| 6 output_name = "gfx_ozone" |
| 7 saources = [ |
| 8 "impl/file_surface_factory.cc", |
| 9 "impl/file_surface_factory.h", |
| 10 "surface_factory_ozone.cc", |
| 11 "surface_factory_ozone.h", |
| 12 "surface_ozone_egl.h", |
| 13 "surface_ozone_canvas.h", |
| 14 "overlay_candidates_ozone.cc", |
| 15 "overlay_candidates_ozone.h", |
| 16 ] |
| 17 |
| 18 defines = [ "GFX_IMPLEMENTATION" ] |
| 19 |
| 20 deps = [ |
| 21 "//base", |
| 22 "//ui/gfx/geometry", |
| 23 "//skia", |
| 24 ] |
| 25 } |
OLD | NEW |