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

Side by Side Diff: cc/BUILD.gn

Issue 1892303003: Added the Vulkan Context Provider implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Export VulkanContextProvider Created 4 years, 8 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 | cc/cc.gyp » ('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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("cc") { 8 component("cc") {
9 sources = [ 9 sources = [
10 "animation/animation.cc", 10 "animation/animation.cc",
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 "output/software_output_device.h", 258 "output/software_output_device.h",
259 "output/software_renderer.cc", 259 "output/software_renderer.cc",
260 "output/software_renderer.h", 260 "output/software_renderer.h",
261 "output/static_geometry_binding.cc", 261 "output/static_geometry_binding.cc",
262 "output/static_geometry_binding.h", 262 "output/static_geometry_binding.h",
263 "output/swap_promise.h", 263 "output/swap_promise.h",
264 "output/texture_mailbox_deleter.cc", 264 "output/texture_mailbox_deleter.cc",
265 "output/texture_mailbox_deleter.h", 265 "output/texture_mailbox_deleter.h",
266 "output/viewport_selection_bound.cc", 266 "output/viewport_selection_bound.cc",
267 "output/viewport_selection_bound.h", 267 "output/viewport_selection_bound.h",
268 "output/vulkan_context_provider.h",
269 "output/vulkan_in_process_context_provider.cc",
270 "output/vulkan_in_process_context_provider.h",
268 "playback/clip_display_item.cc", 271 "playback/clip_display_item.cc",
269 "playback/clip_display_item.h", 272 "playback/clip_display_item.h",
270 "playback/clip_path_display_item.cc", 273 "playback/clip_path_display_item.cc",
271 "playback/clip_path_display_item.h", 274 "playback/clip_path_display_item.h",
272 "playback/compositing_display_item.cc", 275 "playback/compositing_display_item.cc",
273 "playback/compositing_display_item.h", 276 "playback/compositing_display_item.h",
274 "playback/decoded_draw_image.h", 277 "playback/decoded_draw_image.h",
275 "playback/discardable_image_map.cc", 278 "playback/discardable_image_map.cc",
276 "playback/discardable_image_map.h", 279 "playback/discardable_image_map.h",
277 "playback/display_item.cc", 280 "playback/display_item.cc",
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 558
556 defines = [ "CC_IMPLEMENTATION=1" ] 559 defines = [ "CC_IMPLEMENTATION=1" ]
557 560
558 if (!is_debug && (is_win || is_android)) { 561 if (!is_debug && (is_win || is_android)) {
559 configs -= [ "//build/config/compiler:default_optimization" ] 562 configs -= [ "//build/config/compiler:default_optimization" ]
560 configs += [ "//build/config/compiler:optimize_max" ] 563 configs += [ "//build/config/compiler:optimize_max" ]
561 } 564 }
562 565
563 if (enable_vulkan) { 566 if (enable_vulkan) {
564 sources += [ 567 sources += [
565 "output/vulkan_context_provider.h",
566 "output/vulkan_in_process_context_provider.cc",
567 "output/vulkan_in_process_context_provider.h",
568 "output/vulkan_renderer.cc", 568 "output/vulkan_renderer.cc",
569 "output/vulkan_renderer.h", 569 "output/vulkan_renderer.h",
570 ] 570 ]
571 571
572 deps += [ "//gpu/vulkan" ] 572 deps += [ "//gpu/vulkan" ]
573 } 573 }
574 } 574 }
575 575
576 source_set("test_support") { 576 source_set("test_support") {
577 testonly = true 577 testonly = true
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
996 "//ui/gl", 996 "//ui/gl",
997 "//ui/gl:test_support", 997 "//ui/gl:test_support",
998 ] 998 ]
999 999
1000 if (is_android) { 1000 if (is_android) {
1001 isolate_file = "cc_perftests.isolate" 1001 isolate_file = "cc_perftests.isolate"
1002 } 1002 }
1003 } 1003 }
1004 # When adding support for isolates, please have a look at run-time dependencies 1004 # When adding support for isolates, please have a look at run-time dependencies
1005 # in the cc_unittests_run target in cc_tests.gyp. 1005 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698