| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 # The list of platforms that will be built. | 8 # The list of platforms that will be built. |
| 9 ozone_platforms = [] | 9 ozone_platforms = [] |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "public/surface_ozone_egl.cc", | 66 "public/surface_ozone_egl.cc", |
| 67 "public/surface_ozone_egl.h", | 67 "public/surface_ozone_egl.h", |
| 68 "public/system_input_injector.h", | 68 "public/system_input_injector.h", |
| 69 ] | 69 ] |
| 70 | 70 |
| 71 defines = [ "OZONE_BASE_IMPLEMENTATION" ] | 71 defines = [ "OZONE_BASE_IMPLEMENTATION" ] |
| 72 | 72 |
| 73 deps = [ | 73 deps = [ |
| 74 "//base", | 74 "//base", |
| 75 "//skia", | 75 "//skia", |
| 76 "//ui/gfx/geometry", | 76 "//ui/gfx", |
| 77 ] | 77 ] |
| 78 } | 78 } |
| 79 | 79 |
| 80 component("ozone") { | 80 component("ozone") { |
| 81 sources = [ | 81 sources = [ |
| 82 "common/display_mode_proxy.cc", | 82 "common/display_mode_proxy.cc", |
| 83 "common/display_mode_proxy.h", | 83 "common/display_mode_proxy.h", |
| 84 "common/display_snapshot_proxy.cc", | 84 "common/display_snapshot_proxy.cc", |
| 85 "common/display_snapshot_proxy.h", | 85 "common/display_snapshot_proxy.h", |
| 86 "common/display_util.cc", | 86 "common/display_util.cc", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 sources = [ | 184 sources = [ |
| 185 "run_all_unittests.cc", | 185 "run_all_unittests.cc", |
| 186 ] | 186 ] |
| 187 | 187 |
| 188 deps = [ | 188 deps = [ |
| 189 "//base/test:test_support", | 189 "//base/test:test_support", |
| 190 "//testing/gtest", | 190 "//testing/gtest", |
| 191 "//ui/gfx/geometry", | 191 "//ui/gfx/geometry", |
| 192 ] + ozone_platform_test_deps | 192 ] + ozone_platform_test_deps |
| 193 } | 193 } |
| OLD | NEW |