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

Side by Side Diff: gpu/BUILD.gn

Issue 1983443002: mac/gn: Make a bunch of targets build in release component builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: skip cast for now Created 4 years, 7 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 | « device/serial/BUILD.gn ('k') | rlz/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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « device/serial/BUILD.gn ('k') | rlz/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698