| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 defines = [ "OZONE_IMPLEMENTATION" ] | 102 defines = [ "OZONE_IMPLEMENTATION" ] |
| 103 | 103 |
| 104 deps = [ | 104 deps = [ |
| 105 ":generate_constructor_list", | 105 ":generate_constructor_list", |
| 106 ":generate_ozone_platform_list", | 106 ":generate_ozone_platform_list", |
| 107 ":ozone_base", | 107 ":ozone_base", |
| 108 "//base", | 108 "//base", |
| 109 "//ipc", | 109 "//ipc", |
| 110 "//skia", | 110 "//skia", |
| 111 "//ui/display/types", | 111 "//ui/display/types", |
| 112 "//ui/display/util", |
| 112 "//ui/events", | 113 "//ui/events", |
| 113 "//ui/events/ozone:events_ozone", | 114 "//ui/events/ozone:events_ozone", |
| 114 "//ui/gfx", | 115 "//ui/gfx", |
| 115 "//ui/gfx/geometry", | 116 "//ui/gfx/geometry", |
| 116 "//ui/gfx/ipc", | 117 "//ui/gfx/ipc", |
| 117 # TODO(GYP) the GYP version has a way to add additional dependencies via | 118 # TODO(GYP) the GYP version has a way to add additional dependencies via |
| 118 # build flags. | 119 # build flags. |
| 119 ] + ozone_platform_deps | 120 ] + ozone_platform_deps |
| 120 | 121 |
| 121 } | 122 } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 test("ozone_unittests") { | 163 test("ozone_unittests") { |
| 163 sources = [ | 164 sources = [ |
| 164 "run_all_unittests.cc", | 165 "run_all_unittests.cc", |
| 165 ] | 166 ] |
| 166 | 167 |
| 167 deps = [ | 168 deps = [ |
| 168 "//base/test:test_support", | 169 "//base/test:test_support", |
| 169 "//testing/gtest", | 170 "//testing/gtest", |
| 170 ] + ozone_platform_test_deps | 171 ] + ozone_platform_test_deps |
| 171 } | 172 } |
| OLD | NEW |