| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 "//ui/gfx:test_support", | 212 "//ui/gfx:test_support", |
| 213 "//ui/gfx/geometry", | 213 "//ui/gfx/geometry", |
| 214 "//ui/gl", | 214 "//ui/gl", |
| 215 ] | 215 ] |
| 216 | 216 |
| 217 libs = [] | 217 libs = [] |
| 218 | 218 |
| 219 if (is_android) { | 219 if (is_android) { |
| 220 libs += [ "android" ] | 220 libs += [ "android" ] |
| 221 deps += [ "//ui/android:ui_java" ] | 221 deps += [ "//ui/android:ui_java" ] |
| 222 } else if (is_mac) { |
| 223 libs += [ "IOSurface.framework" ] |
| 222 } | 224 } |
| 223 } | 225 } |
| 224 | 226 |
| 225 test("gpu_unittests") { | 227 test("gpu_unittests") { |
| 226 sources = [ | 228 sources = [ |
| 227 "command_buffer/client/buffer_tracker_unittest.cc", | 229 "command_buffer/client/buffer_tracker_unittest.cc", |
| 228 "command_buffer/client/client_test_helper.cc", | 230 "command_buffer/client/client_test_helper.cc", |
| 229 "command_buffer/client/client_test_helper.h", | 231 "command_buffer/client/client_test_helper.h", |
| 230 "command_buffer/client/cmd_buffer_helper_test.cc", | 232 "command_buffer/client/cmd_buffer_helper_test.cc", |
| 231 "command_buffer/client/fenced_allocator_test.cc", | 233 "command_buffer/client/fenced_allocator_test.cc", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 "//testing/gmock", | 389 "//testing/gmock", |
| 388 "//testing/gtest", | 390 "//testing/gtest", |
| 389 "//testing/perf", | 391 "//testing/perf", |
| 390 "//ui/gfx/geometry", | 392 "//ui/gfx/geometry", |
| 391 "//ui/gl", | 393 "//ui/gl", |
| 392 ] | 394 ] |
| 393 | 395 |
| 394 # This target should not require the Chrome executable to run. | 396 # This target should not require the Chrome executable to run. |
| 395 assert_no_deps = [ "//chrome" ] | 397 assert_no_deps = [ "//chrome" ] |
| 396 } | 398 } |
| OLD | NEW |