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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 "//gpu/command_buffer/client:gles2_c_lib", | 122 "//gpu/command_buffer/client:gles2_c_lib", |
123 "//gpu/command_buffer/client:gles2_implementation", | 123 "//gpu/command_buffer/client:gles2_implementation", |
124 ] | 124 ] |
125 | 125 |
126 libs = [] | 126 libs = [] |
127 | 127 |
128 if (is_android) { | 128 if (is_android) { |
129 deps += [ "//testing/android:native_test_native_code" ] | 129 deps += [ "//testing/android:native_test_native_code" ] |
130 libs += [ "android" ] | 130 libs += [ "android" ] |
131 } | 131 } |
132 | |
133 # TODO(GYP) | |
134 # ['OS == "win"', { | |
135 # 'dependencies': [ | |
136 # '../third_party/angle/src/build_angle.gyp:libEGL', | |
137 # '../third_party/angle/src/build_angle.gyp:libGLESv2', | |
138 # ], | |
139 # }], | |
140 } | 132 } |
141 | 133 |
142 test("gpu_unittests") { | 134 test("gpu_unittests") { |
143 sources = [ | 135 sources = [ |
144 "command_buffer/client/buffer_tracker_unittest.cc", | 136 "command_buffer/client/buffer_tracker_unittest.cc", |
145 "command_buffer/client/client_test_helper.cc", | 137 "command_buffer/client/client_test_helper.cc", |
146 "command_buffer/client/client_test_helper.h", | 138 "command_buffer/client/client_test_helper.h", |
147 "command_buffer/client/cmd_buffer_helper_test.cc", | 139 "command_buffer/client/cmd_buffer_helper_test.cc", |
148 "command_buffer/client/fenced_allocator_test.cc", | 140 "command_buffer/client/fenced_allocator_test.cc", |
149 "command_buffer/client/gles2_implementation_unittest.cc", | 141 "command_buffer/client/gles2_implementation_unittest.cc", |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 | 274 |
283 deps = [ | 275 deps = [ |
284 "//base", | 276 "//base", |
285 "//base/test:test_support", | 277 "//base/test:test_support", |
286 "//base/third_party/dynamic_annotations", | 278 "//base/third_party/dynamic_annotations", |
287 "//testing/gmock", | 279 "//testing/gmock", |
288 "//testing/gtest", | 280 "//testing/gtest", |
289 "//third_party/angle:translator_static", | 281 "//third_party/angle:translator_static", |
290 ] | 282 ] |
291 } | 283 } |
OLD | NEW |