BUILD.gn 575 B

123456789101112131415161718192021222324252627282930
  1. # Copyright 2021 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. import("//mojo/public/tools/bindings/mojom.gni")
  5. source_set("common") {
  6. sources = [
  7. "constants.cc",
  8. "constants.h",
  9. "switches.cc",
  10. "switches.h",
  11. ]
  12. }
  13. mojom("mojo_bindings") {
  14. disable_variants = true
  15. sources = [
  16. "web_page_metadata.mojom",
  17. "web_page_metadata_agent.mojom",
  18. ]
  19. deps = []
  20. public_deps = [
  21. "//mojo/public/mojom/base",
  22. "//url/mojom:url_mojom_gurl",
  23. ]
  24. }