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 # GYP-to-GN project mappings: | 5 # GYP-to-GN project mappings: |
6 # | 6 # |
7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client | 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client |
8 # | 8 # |
9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common | 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common |
10 # | 10 # |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 "//ui/gfx", | 169 "//ui/gfx", |
170 "//ui/gfx:test_support", | 170 "//ui/gfx:test_support", |
171 "//ui/gfx/geometry", | 171 "//ui/gfx/geometry", |
172 "//ui/gl", | 172 "//ui/gl", |
173 ] | 173 ] |
174 | 174 |
175 libs = [] | 175 libs = [] |
176 | 176 |
177 if (is_android) { | 177 if (is_android) { |
178 libs += [ "android" ] | 178 libs += [ "android" ] |
179 apk_deps = [ "//ui/android:ui_java" ] | 179 deps += [ "//ui/android:ui_java" ] |
180 } | 180 } |
181 } | 181 } |
182 | 182 |
183 # TODO(GYP): Delete this after we've converted everything to GN. | 183 # TODO(GYP): Delete this after we've converted everything to GN. |
184 # The _run targets exist only for compatibility w/ GYP. | 184 # The _run targets exist only for compatibility w/ GYP. |
185 group("gpu_unittests_run") { | 185 group("gpu_unittests_run") { |
186 testonly = true | 186 testonly = true |
187 deps = [ | 187 deps = [ |
188 ":gpu_unittests", | 188 ":gpu_unittests", |
189 ] | 189 ] |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 if (is_win || is_linux || is_mac) { | 345 if (is_win || is_linux || is_mac) { |
346 # TODO(GYP): Delete this after we've converted everything to GN. | 346 # TODO(GYP): Delete this after we've converted everything to GN. |
347 # The _run targets exist only for compatibility w/ GYP. | 347 # The _run targets exist only for compatibility w/ GYP. |
348 group("angle_end2end_tests_run") { | 348 group("angle_end2end_tests_run") { |
349 testonly = true | 349 testonly = true |
350 deps = [ | 350 deps = [ |
351 "//third_party/angle/src/tests:angle_end2end_tests", | 351 "//third_party/angle/src/tests:angle_end2end_tests", |
352 ] | 352 ] |
353 } | 353 } |
354 } | 354 } |
OLD | NEW |