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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 51 |
52 source_set("test_support") { | 52 source_set("test_support") { |
53 testonly = true | 53 testonly = true |
54 sources = [ | 54 sources = [ |
55 "command_buffer/client/gles2_interface_stub.cc", | 55 "command_buffer/client/gles2_interface_stub.cc", |
56 "command_buffer/client/gles2_interface_stub.h", | 56 "command_buffer/client/gles2_interface_stub.h", |
57 "command_buffer/service/error_state_mock.cc", | 57 "command_buffer/service/error_state_mock.cc", |
58 "command_buffer/service/gles2_cmd_decoder_mock.cc", | 58 "command_buffer/service/gles2_cmd_decoder_mock.cc", |
59 ] | 59 ] |
60 | 60 |
61 configs += [ ":gpu_implementation" ] | |
62 | |
63 public_deps = [ | 61 public_deps = [ |
64 ":gpu", | 62 ":gpu", |
65 "//gpu/command_buffer/client:gles2_interface", | 63 "//gpu/command_buffer/client:gles2_interface", |
66 ] | 64 ] |
67 deps = [ | 65 deps = [ |
68 "//testing/gmock", | 66 "//testing/gmock", |
69 "//testing/gtest", | 67 "//testing/gtest", |
70 "//ui/gl:gl_unittest_utils", | 68 "//ui/gl:gl_unittest_utils", |
71 ] | 69 ] |
72 } | 70 } |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 | 272 |
275 deps = [ | 273 deps = [ |
276 "//base", | 274 "//base", |
277 "//base/test:test_support", | 275 "//base/test:test_support", |
278 "//base/third_party/dynamic_annotations", | 276 "//base/third_party/dynamic_annotations", |
279 "//testing/gmock", | 277 "//testing/gmock", |
280 "//testing/gtest", | 278 "//testing/gtest", |
281 "//third_party/angle:translator_static", | 279 "//third_party/angle:translator_static", |
282 ] | 280 ] |
283 } | 281 } |
OLD | NEW |