| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "public/ozone_platform.h", | 113 "public/ozone_platform.h", |
| 114 "public/ozone_switches.cc", | 114 "public/ozone_switches.cc", |
| 115 "public/ozone_switches.h", | 115 "public/ozone_switches.h", |
| 116 constructor_list_cc_file, | 116 constructor_list_cc_file, |
| 117 platform_list_cc_file, | 117 platform_list_cc_file, |
| 118 platform_list_h_file, | 118 platform_list_h_file, |
| 119 ] | 119 ] |
| 120 | 120 |
| 121 defines = [ "OZONE_IMPLEMENTATION" ] | 121 defines = [ "OZONE_IMPLEMENTATION" ] |
| 122 | 122 |
| 123 public_deps = [ | |
| 124 ":ozone_base", | |
| 125 ] | |
| 126 | |
| 127 deps = | 123 deps = |
| 128 [ | 124 [ |
| 129 ":generate_constructor_list", | 125 ":generate_constructor_list", |
| 130 ":generate_ozone_platform_list", | 126 ":generate_ozone_platform_list", |
| 127 ":ozone_base", |
| 131 "//base", | 128 "//base", |
| 132 "//ipc", | 129 "//ipc", |
| 133 "//skia", | 130 "//skia", |
| 134 "//ui/display/types", | 131 "//ui/display/types", |
| 135 "//ui/display/util", | 132 "//ui/display/util", |
| 136 "//ui/events", | 133 "//ui/events", |
| 137 "//ui/events/devices", | 134 "//ui/events/devices", |
| 138 "//ui/events/ozone:events_ozone", | 135 "//ui/events/ozone:events_ozone", |
| 139 "//ui/gfx", | 136 "//ui/gfx", |
| 140 "//ui/gfx/geometry", | 137 "//ui/gfx/geometry", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 sources = [ | 190 sources = [ |
| 194 "run_all_unittests.cc", | 191 "run_all_unittests.cc", |
| 195 ] | 192 ] |
| 196 | 193 |
| 197 deps = [ | 194 deps = [ |
| 198 "//base/test:test_support", | 195 "//base/test:test_support", |
| 199 "//testing/gtest", | 196 "//testing/gtest", |
| 200 "//ui/gfx/geometry", | 197 "//ui/gfx/geometry", |
| 201 ] + ozone_platform_test_deps | 198 ] + ozone_platform_test_deps |
| 202 } | 199 } |
| OLD | NEW |