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

Side by Side Diff: gpu/BUILD.gn

Issue 1417823007: GN(Android): Fix up gl_tests to match GYP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « no previous file | no next file » | 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 "//ui/gfx/geometry", 167 "//ui/gfx/geometry",
168 "//ui/gl", 168 "//ui/gl",
169 "//gpu/command_buffer/common:gles2_utils", 169 "//gpu/command_buffer/common:gles2_utils",
170 "//gpu/command_buffer/client:gles2_c_lib", 170 "//gpu/command_buffer/client:gles2_c_lib",
171 "//gpu/command_buffer/client:gles2_implementation", 171 "//gpu/command_buffer/client:gles2_implementation",
172 ] 172 ]
173 173
174 libs = [] 174 libs = []
175 175
176 if (is_android) { 176 if (is_android) {
177 deps += [ "//testing/android/native_test:native_test_native_code" ]
178 libs += [ "android" ] 177 libs += [ "android" ]
178 apk_deps = [ "//ui/android:ui_java" ]
179 } 179 }
180 } 180 }
181 181
182 # TODO(GYP): Delete this after we've converted everything to GN. 182 # TODO(GYP): Delete this after we've converted everything to GN.
183 # The _run targets exist only for compatibility w/ GYP. 183 # The _run targets exist only for compatibility w/ GYP.
184 group("gpu_unittests_run") { 184 group("gpu_unittests_run") {
185 testonly = true 185 testonly = true
186 deps = [ 186 deps = [
187 ":gpu_unittests", 187 ":gpu_unittests",
188 ] 188 ]
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 if (is_win || is_linux || is_mac) { 344 if (is_win || is_linux || is_mac) {
345 # TODO(GYP): Delete this after we've converted everything to GN. 345 # TODO(GYP): Delete this after we've converted everything to GN.
346 # The _run targets exist only for compatibility w/ GYP. 346 # The _run targets exist only for compatibility w/ GYP.
347 group("angle_end2end_tests_run") { 347 group("angle_end2end_tests_run") {
348 testonly = true 348 testonly = true
349 deps = [ 349 deps = [
350 "//third_party/angle/src/tests:angle_end2end_tests", 350 "//third_party/angle/src/tests:angle_end2end_tests",
351 ] 351 ]
352 } 352 }
353 } 353 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698