Use '/protos/' as import prefix of perfetto protos

Historically we referred to our protos assuming
./protos as the source path. So all protos did
import "perfetto/trace/xxx.proto" and C++ code did
#include "perfetto/trace/xxx.pb(zero).h".
This CL makes everything relative to the repo root,
so now things look like
import "protos/perfetto/trace/xxx.proto", likewise
for #includes.
A lot of tooling out there (mainly bazel) seems to
assume that protos are referred to relatively from
the project root. Dealing with the current situation
seems prohibitively complex.

Bug: 140126865
Change-Id: I391aafaf276b68d3576ee16157dba0155dcb0879
diff --git a/src/tracing/core/tracing_service_impl_unittest.cc b/src/tracing/core/tracing_service_impl_unittest.cc
index beed0fc..3479e1e 100644
--- a/src/tracing/core/tracing_service_impl_unittest.cc
+++ b/src/tracing/core/tracing_service_impl_unittest.cc
@@ -36,10 +36,10 @@
 #include "src/tracing/test/test_shared_memory.h"
 #include "test/gtest_and_gmock.h"
 
-#include "perfetto/trace/test_event.pbzero.h"
-#include "perfetto/trace/trace.pb.h"
-#include "perfetto/trace/trace_packet.pb.h"
-#include "perfetto/trace/trace_packet.pbzero.h"
+#include "protos/perfetto/trace/test_event.pbzero.h"
+#include "protos/perfetto/trace/trace.pb.h"
+#include "protos/perfetto/trace/trace_packet.pb.h"
+#include "protos/perfetto/trace/trace_packet.pbzero.h"
 
 using ::testing::_;
 using ::testing::AssertionFailure;