| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 if (is_android) { | 121 if (is_android) { |
| 122 libs += [ "android" ] | 122 libs += [ "android" ] |
| 123 deps += [ "//ui/android:ui_java" ] | 123 deps += [ "//ui/android:ui_java" ] |
| 124 } | 124 } |
| 125 if (is_linux && !is_component_build) { | 125 if (is_linux && !is_component_build) { |
| 126 configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ] | 126 configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ] |
| 127 } | 127 } |
| 128 } | 128 } |
| 129 | 129 |
| 130 source_set("test_support") { | 130 static_library("test_support") { |
| 131 testonly = true | 131 testonly = true |
| 132 sources = [ | 132 sources = [ |
| 133 "command_buffer/client/gles2_interface_stub.cc", | 133 "command_buffer/client/gles2_interface_stub.cc", |
| 134 "command_buffer/client/gles2_interface_stub.h", | 134 "command_buffer/client/gles2_interface_stub.h", |
| 135 "command_buffer/service/error_state_mock.cc", | 135 "command_buffer/service/error_state_mock.cc", |
| 136 "command_buffer/service/gles2_cmd_decoder_mock.cc", | 136 "command_buffer/service/gles2_cmd_decoder_mock.cc", |
| 137 ] | 137 ] |
| 138 | 138 |
| 139 public_deps = [ | 139 public_deps = [ |
| 140 ":gpu", | 140 ":gpu", |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 "//testing/gtest", | 398 "//testing/gtest", |
| 399 "//testing/perf", | 399 "//testing/perf", |
| 400 "//ui/gfx/geometry", | 400 "//ui/gfx/geometry", |
| 401 "//ui/gl", | 401 "//ui/gl", |
| 402 "//ui/gl/init", | 402 "//ui/gl/init", |
| 403 ] | 403 ] |
| 404 | 404 |
| 405 # This target should not require the Chrome executable to run. | 405 # This target should not require the Chrome executable to run. |
| 406 assert_no_deps = [ "//chrome" ] | 406 assert_no_deps = [ "//chrome" ] |
| 407 } | 407 } |
| OLD | NEW |