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

Side by Side Diff: content/common/BUILD.gn

Issue 1776453003: Added initial implementation of Vulkan Render Passes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn_vulkan
Patch Set: Ensure vulkan handles all initialized to null, check destruction in destructor Created 4 years, 9 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
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/common/common.gni") 7 import("//content/common/common.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 if (is_mac) { 10 if (is_mac) {
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 "sandbox_linux/sandbox_bpf_base_policy_linux.h", 511 "sandbox_linux/sandbox_bpf_base_policy_linux.h",
512 ] 512 ]
513 } 513 }
514 if (is_android) { 514 if (is_android) {
515 sources -= [ 515 sources -= [
516 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", 516 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc",
517 "sandbox_linux/android/sandbox_bpf_base_policy_android.h", 517 "sandbox_linux/android/sandbox_bpf_base_policy_android.h",
518 ] 518 ]
519 } 519 }
520 } 520 }
521
522 if (enable_vulkan) {
523 deps += [ "//gpu/vulkan" ]
524 }
521 } 525 }
522 526
523 mojom("mojo_bindings") { 527 mojom("mojo_bindings") {
524 sources = [ 528 sources = [
525 "application_setup.mojom", 529 "application_setup.mojom",
526 "background_sync_service.mojom", 530 "background_sync_service.mojom",
527 "geolocation_service.mojom", 531 "geolocation_service.mojom",
528 "image_downloader/image_downloader.mojom", 532 "image_downloader/image_downloader.mojom",
529 "leveldb_wrapper.mojom", 533 "leveldb_wrapper.mojom",
530 "permission_service.mojom", 534 "permission_service.mojom",
(...skipping 12 matching lines...) Expand all
543 547
544 public_deps = [ 548 public_deps = [
545 "//components/leveldb/public/interfaces", 549 "//components/leveldb/public/interfaces",
546 "//components/mus/public/interfaces", 550 "//components/mus/public/interfaces",
547 "//content/public/common:mojo_bindings", 551 "//content/public/common:mojo_bindings",
548 "//mojo/shell/public/interfaces", 552 "//mojo/shell/public/interfaces",
549 "//skia/public/interfaces", 553 "//skia/public/interfaces",
550 "//ui/mojo/geometry:interfaces", 554 "//ui/mojo/geometry:interfaces",
551 ] 555 ]
552 } 556 }
OLDNEW
« no previous file with comments | « no previous file | content/common/gpu/gpu_command_buffer_stub.h » ('j') | content/common/gpu/gpu_command_buffer_stub.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698