Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Side by Side Diff: gpu/BUILD.gn

Issue 464153002: GN: Create a :gles2_interface target to resolve some check errors in //cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: :gles2_interface only Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 } 48 }
49 49
50 source_set("test_support") { 50 source_set("test_support") {
51 sources = [ 51 sources = [
52 "command_buffer/service/gles2_cmd_decoder_mock.cc", 52 "command_buffer/service/gles2_cmd_decoder_mock.cc",
53 "command_buffer/service/error_state_mock.cc", 53 "command_buffer/service/error_state_mock.cc",
54 "command_buffer/client/gles2_interface_stub.cc", 54 "command_buffer/client/gles2_interface_stub.cc",
55 "command_buffer/client/gles2_interface_stub.h", 55 "command_buffer/client/gles2_interface_stub.h",
56 ] 56 ]
57 57
58 configs += [ "//third_party/khronos:khronos_headers" ]
59
60 deps = [ 58 deps = [
61 ":gpu", 59 ":gpu",
60 "//gpu/command_buffer/client:gles2_interface",
62 "//testing/gmock", 61 "//testing/gmock",
63 "//testing/gtest", 62 "//testing/gtest",
64 "//ui/gl:gl_unittest_utils", 63 "//ui/gl:gl_unittest_utils",
65 ] 64 ]
66 } 65 }
67 66
68 test("gl_tests") { 67 test("gl_tests") {
69 sources = [ 68 sources = [
70 "command_buffer/tests/compressed_texture_test.cc", 69 "command_buffer/tests/compressed_texture_test.cc",
71 "command_buffer/tests/gl_bind_uniform_location_unittest.cc", 70 "command_buffer/tests/gl_bind_uniform_location_unittest.cc",
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 ] 244 ]
246 245
247 deps = [ 246 deps = [
248 "//base", 247 "//base",
249 "//base/third_party/dynamic_annotations", 248 "//base/third_party/dynamic_annotations",
250 "//testing/gmock", 249 "//testing/gmock",
251 "//testing/gtest", 250 "//testing/gtest",
252 "//third_party/angle:translator_static", 251 "//third_party/angle:translator_static",
253 ] 252 ]
254 } 253 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698