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

Side by Side Diff: gpu/BUILD.gn

Issue 2151013002: Convert some GN test support targets to static libs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remoting Created 4 years, 5 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
« no previous file with comments | « google_apis/gcm/BUILD.gn ('k') | ipc/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « google_apis/gcm/BUILD.gn ('k') | ipc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698