BUILD.gn 553 B

123456789101112131415161718192021
  1. # Copyright 2020 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. mojom("mojom") {
  6. disable_variants = true
  7. sources = [
  8. "content_settings_agent.mojom",
  9. "content_settings_manager.mojom",
  10. ]
  11. deps = [
  12. "//components/content_settings/core/common:mojo_bindings",
  13. "//services/network/public/mojom:cookies_mojom",
  14. "//url/mojom:url_mojom_gurl",
  15. "//url/mojom:url_mojom_origin",
  16. ]
  17. }