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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
233 deps = [ | 233 deps = [ |
234 ":gpu", | 234 ":gpu", |
235 ":test_support", | 235 ":test_support", |
236 "//base", | 236 "//base", |
237 "//base/test:test_support", | 237 "//base/test:test_support", |
238 "//base/third_party/dynamic_annotations", | 238 "//base/third_party/dynamic_annotations", |
239 "//testing/gmock", | 239 "//testing/gmock", |
240 "//testing/gtest", | 240 "//testing/gtest", |
241 "//third_party/angle:translator", | 241 "//third_party/angle:translator", |
242 "//ui/gfx", | 242 "//ui/gfx", |
243 "//ui/gfx/geometry", | |
243 "//ui/gfx:test_support", | 244 "//ui/gfx:test_support", |
244 "//ui/gfx/geometry", | |
245 "//ui/gl", | 245 "//ui/gl", |
246 "//ui/gl:gl_unittest_utils", | |
tfarina
2015/05/14 00:46:39
I extracted this from https://codereview.chromium.
| |
246 "//gpu/command_buffer/common:gles2_utils", | 247 "//gpu/command_buffer/common:gles2_utils", |
247 "//gpu/command_buffer/client:gles2_c_lib", | 248 "//gpu/command_buffer/client:gles2_c_lib", |
248 "//gpu/command_buffer/client:gles2_implementation", | 249 "//gpu/command_buffer/client:gles2_implementation", |
249 ] | 250 ] |
250 } | 251 } |
251 | 252 |
252 test("gpu_perftests") { | 253 test("gpu_perftests") { |
253 sources = [ | 254 sources = [ |
254 "perftests/measurements.cc", | 255 "perftests/measurements.cc", |
255 "perftests/run_all_tests.cc", | 256 "perftests/run_all_tests.cc", |
(...skipping 19 matching lines...) Expand all Loading... | |
275 | 276 |
276 deps = [ | 277 deps = [ |
277 "//base", | 278 "//base", |
278 "//base/test:test_support", | 279 "//base/test:test_support", |
279 "//base/third_party/dynamic_annotations", | 280 "//base/third_party/dynamic_annotations", |
280 "//testing/gmock", | 281 "//testing/gmock", |
281 "//testing/gtest", | 282 "//testing/gtest", |
282 "//third_party/angle:translator_static", | 283 "//third_party/angle:translator_static", |
283 ] | 284 ] |
284 } | 285 } |
OLD | NEW |