| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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(use_ozone) | 7 assert(use_ozone) |
| 8 | 8 |
| 9 source_set("common") { | 9 source_set("common") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "stub_overlay_manager.cc", | 24 "stub_overlay_manager.cc", |
| 25 "stub_overlay_manager.h", | 25 "stub_overlay_manager.h", |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 public_deps = [ | 28 public_deps = [ |
| 29 "//ui/ozone:ozone_base", | 29 "//ui/ozone:ozone_base", |
| 30 ] | 30 ] |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 "//ui/gl", | 33 "//ui/gl", |
| 34 "//ui/gl:gl_features", |
| 34 ] | 35 ] |
| 35 | 36 |
| 36 visibility = [ "//ui/ozone/platform/*" ] | 37 visibility = [ "//ui/ozone/platform/*" ] |
| 37 } | 38 } |
| OLD | NEW |