BUILD.gn 835 B

1234567891011121314151617181920212223242526272829
  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. executable("aggregation_service_tool") {
  5. testonly = true
  6. sources = [
  7. "aggregation_service_tool.cc",
  8. "aggregation_service_tool.h",
  9. "aggregation_service_tool_main.cc",
  10. "aggregation_service_tool_network_initializer.cc",
  11. "aggregation_service_tool_network_initializer.h",
  12. ]
  13. deps = [
  14. "//base",
  15. "//content/test:test_support",
  16. "//mojo/core/embedder:embedder",
  17. "//net",
  18. "//services/cert_verifier:lib",
  19. "//services/data_decoder/public/cpp:test_support",
  20. "//services/network:network_service",
  21. "//services/network/public/cpp",
  22. "//services/network/public/mojom",
  23. "//third_party/abseil-cpp:absl",
  24. "//url",
  25. ]
  26. }