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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 "//ui/events", | 116 "//ui/events", |
117 "//ui/events/ozone:events_ozone", | 117 "//ui/events/ozone:events_ozone", |
118 "//ui/gfx", | 118 "//ui/gfx", |
119 "//ui/gfx/geometry", | 119 "//ui/gfx/geometry", |
120 "//ui/gfx/ipc", | 120 "//ui/gfx/ipc", |
121 # TODO(GYP) the GYP version has a way to add additional dependencies via | 121 # TODO(GYP) the GYP version has a way to add additional dependencies via |
122 # build flags. | 122 # build flags. |
123 ] + ozone_platform_deps | 123 ] + ozone_platform_deps |
124 | 124 |
125 if (is_chromeos) { | 125 if (is_chromeos) { |
126 deps += [ "//ui/dusplay/types" ] | 126 deps += [ "//ui/display/types" ] |
127 } | 127 } |
128 } | 128 } |
129 | 129 |
130 # GYP version: ui/ozone/ozone.gyp:generate_ozone_platform_list | 130 # GYP version: ui/ozone/ozone.gyp:generate_ozone_platform_list |
131 action("generate_ozone_platform_list") { | 131 action("generate_ozone_platform_list") { |
132 script = "generate_ozone_platform_list.py" | 132 script = "generate_ozone_platform_list.py" |
133 outputs = [ | 133 outputs = [ |
134 platform_list_cc_file, | 134 platform_list_cc_file, |
135 platform_list_h_file, | 135 platform_list_h_file, |
136 platform_list_txt_file | 136 platform_list_txt_file |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 test("ozone_unittests") { | 169 test("ozone_unittests") { |
170 sources = [ | 170 sources = [ |
171 "run_all_unittests.cc", | 171 "run_all_unittests.cc", |
172 ] | 172 ] |
173 | 173 |
174 deps = [ | 174 deps = [ |
175 "//base/test:test_support", | 175 "//base/test:test_support", |
176 "//testing/gtest", | 176 "//testing/gtest", |
177 ] + ozone_platform_test_deps | 177 ] + ozone_platform_test_deps |
178 } | 178 } |
OLD | NEW |