| 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 import("//ui/ozone/ozone.gni") | 6 import("//ui/ozone/ozone.gni") |
| 7 import("//ui/ozone/ozone_extra.gni") | 7 import("//ui/ozone/ozone_extra.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 assert(use_ozone) | 10 assert(use_ozone) |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 component("ozone_base") { | 61 component("ozone_base") { |
| 62 sources = [ | 62 sources = [ |
| 63 "public/cursor_factory_ozone.cc", | 63 "public/cursor_factory_ozone.cc", |
| 64 "public/cursor_factory_ozone.h", | 64 "public/cursor_factory_ozone.h", |
| 65 "public/gl_ozone.h", | 65 "public/gl_ozone.h", |
| 66 "public/gpu_platform_support_host.cc", | 66 "public/gpu_platform_support_host.cc", |
| 67 "public/gpu_platform_support_host.h", | 67 "public/gpu_platform_support_host.h", |
| 68 "public/input_controller.cc", | 68 "public/input_controller.cc", |
| 69 "public/input_controller.h", | 69 "public/input_controller.h", |
| 70 "public/native_pixmap.h", | |
| 71 "public/overlay_candidates_ozone.cc", | 70 "public/overlay_candidates_ozone.cc", |
| 72 "public/overlay_candidates_ozone.h", | 71 "public/overlay_candidates_ozone.h", |
| 73 "public/overlay_manager_ozone.h", | 72 "public/overlay_manager_ozone.h", |
| 74 "public/ozone_switches.cc", | 73 "public/ozone_switches.cc", |
| 75 "public/ozone_switches.h", | 74 "public/ozone_switches.h", |
| 76 "public/surface_factory_ozone.cc", | 75 "public/surface_factory_ozone.cc", |
| 77 "public/surface_factory_ozone.h", | 76 "public/surface_factory_ozone.h", |
| 78 "public/surface_ozone_canvas.h", | 77 "public/surface_ozone_canvas.h", |
| 79 "public/swap_completion_callback.h", | 78 "public/swap_completion_callback.h", |
| 80 "public/system_input_injector.h", | 79 "public/system_input_injector.h", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "//ui/gfx/geometry", | 222 "//ui/gfx/geometry", |
| 224 ] | 223 ] |
| 225 | 224 |
| 226 # Add tests of platform internals. | 225 # Add tests of platform internals. |
| 227 deps += ozone_platform_test_deps | 226 deps += ozone_platform_test_deps |
| 228 | 227 |
| 229 # Platform tests link ozone statically. Make sure we're not getting a | 228 # Platform tests link ozone statically. Make sure we're not getting a |
| 230 # 2nd copy of any code via the component. | 229 # 2nd copy of any code via the component. |
| 231 assert_no_deps = [ "//ui/ozone" ] | 230 assert_no_deps = [ "//ui/ozone" ] |
| 232 } | 231 } |
| OLD | NEW |