| 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("//ui/ozone/ozone.gni") | 5 import("//ui/ozone/ozone.gni") |
| 6 | 6 |
| 7 # The list of platforms that will be built. | 7 # The list of platforms that will be built. |
| 8 ozone_platforms = [] | 8 ozone_platforms = [] |
| 9 | 9 |
| 10 # Extra dependencies to pull into ui/ozone for built platforms. | 10 # Extra dependencies to pull into ui/ozone for built platforms. |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "public/gpu_platform_support.cc", | 52 "public/gpu_platform_support.cc", |
| 53 "public/gpu_platform_support.h", | 53 "public/gpu_platform_support.h", |
| 54 "public/gpu_platform_support_host.cc", | 54 "public/gpu_platform_support_host.cc", |
| 55 "public/gpu_platform_support_host.h", | 55 "public/gpu_platform_support_host.h", |
| 56 "public/overlay_candidates_ozone.cc", | 56 "public/overlay_candidates_ozone.cc", |
| 57 "public/overlay_candidates_ozone.h", | 57 "public/overlay_candidates_ozone.h", |
| 58 "public/surface_factory_ozone.cc", | 58 "public/surface_factory_ozone.cc", |
| 59 "public/surface_factory_ozone.h", | 59 "public/surface_factory_ozone.h", |
| 60 "public/surface_ozone_canvas.h", | 60 "public/surface_ozone_canvas.h", |
| 61 "public/surface_ozone_egl.h", | 61 "public/surface_ozone_egl.h", |
| 62 "public/system_input_injector.h", |
| 62 ] | 63 ] |
| 63 | 64 |
| 64 defines = [ "OZONE_BASE_IMPLEMENTATION" ] | 65 defines = [ "OZONE_BASE_IMPLEMENTATION" ] |
| 65 | 66 |
| 66 deps = [ | 67 deps = [ |
| 67 "//base", | 68 "//base", |
| 68 "//skia", | 69 "//skia", |
| 69 "//ui/gfx/geometry", | 70 "//ui/gfx/geometry", |
| 70 ] | 71 ] |
| 71 } | 72 } |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 test("ozone_unittests") { | 164 test("ozone_unittests") { |
| 164 sources = [ | 165 sources = [ |
| 165 "run_all_unittests.cc", | 166 "run_all_unittests.cc", |
| 166 ] | 167 ] |
| 167 | 168 |
| 168 deps = [ | 169 deps = [ |
| 169 "//base/test:test_support", | 170 "//base/test:test_support", |
| 170 "//testing/gtest", | 171 "//testing/gtest", |
| 171 ] + ozone_platform_test_deps | 172 ] + ozone_platform_test_deps |
| 172 } | 173 } |
| OLD | NEW |