OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |