From bc9104541f2d24f34121f17b89c1151d227a3afd Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 11 May 2019 15:07:27 -0700 Subject: [PATCH] [fidl] Convert from - to . names for //zircon/public/fidl This is part of a soft transition to replace fuchsia-foo-bar names with fuchsia.foo.bar names for the directory and GN target names for FIDL libraries defined in //zircon/system/fidl and accessed in legacy GN via //zircon/public/fidl. After the transition, the directory and GN target names will exactly match the FIDL library names everywhere. 1. Make //zircon/public/fidl/a.b.c alias //zircon/public/fidl/a-b-c 2. Convert all //zircon/public/fidl uses outside fuchsia.git & integrate 3. Convert all //zircon/public/fidl uses inside fuchsia.git 4. Remove transition hacks 5. Enforce naming conventions in GN templates This is step 2. Bug: ZX-3365 #comment //third_party/crashpad references converted Change-Id: Ief90c6f9fa1da51dea7dbbd5b58741cbb7e06891 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/1608163 Reviewed-by: Scott Graham Commit-Queue: Roland McGrath --- third_party/fuchsia/BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/third_party/fuchsia/BUILD.gn b/third_party/fuchsia/BUILD.gn index f10ccd0d..bf001e36 100644 --- a/third_party/fuchsia/BUILD.gn +++ b/third_party/fuchsia/BUILD.gn @@ -17,8 +17,8 @@ import("../../build/crashpad_buildconfig.gni") if (crashpad_is_in_fuchsia) { group("fuchsia") { public_deps = [ - "//zircon/public/fidl/fuchsia-mem", - "//zircon/public/fidl/fuchsia-sysinfo:fuchsia-sysinfo_c", + "//zircon/public/fidl/fuchsia.mem", + "//zircon/public/fidl/fuchsia.sysinfo:fuchsia.sysinfo_c", "//zircon/public/lib/fdio", "//zircon/public/lib/zx", ]