[metrics] Change the example chrome metric to not clash with chromium

Since we have not implemented a good way to shadow proto and sql files
between what's loaded in memory (proto and sql files checked into
perfetto) and what's loaded at runtime (proto and sql files checked into
chromium/src/.../tbmv3), having duplicate metrics can lead to a lot
of trouble. In particular, it will stop working if we enforce single
definition of messages as in https://r.android.com/1386237. The
libprotobuf descriptor pool in trace_processor_shell already rejects
the runtime-loaded definition of console_error_metric, so this can
lead to many subtle bugs.

We will have a proper virtual file system with well defined shadowing
soon, and then this test chrome metric will go away to be replaced with
all metrics rolled in from chromium.

Bug: 161697620
Change-Id: Iede9af8a04d4e352c0323b36e698ee6805de2cab
diff --git a/Android.bp b/Android.bp
index a682da4..1da2804 100644
--- a/Android.bp
+++ b/Android.bp
@@ -56,7 +56,6 @@
     "src/trace_processor/metrics/android/unmapped_java_symbols.sql",
     "src/trace_processor/metrics/android/unsymbolized_frames.sql",
     "src/trace_processor/metrics/chrome/chrome_processes.sql",
-    "src/trace_processor/metrics/chrome/console_error_metric.sql",
     "src/trace_processor/metrics/chrome/scroll_flow_event.sql",
     "src/trace_processor/metrics/chrome/scroll_flow_event_queuing_delay.sql",
     "src/trace_processor/metrics/chrome/scroll_jank.sql",
@@ -64,6 +63,7 @@
     "src/trace_processor/metrics/chrome/scroll_jank_cause_blocking_task.sql",
     "src/trace_processor/metrics/chrome/scroll_jank_cause_blocking_touch_move.sql",
     "src/trace_processor/metrics/chrome/scroll_jank_cause_queuing_delay.sql",
+    "src/trace_processor/metrics/chrome/test_chrome_metric.sql",
     "src/trace_processor/metrics/trace_metadata.sql",
     "src/trace_processor/metrics/webview/webview_power_usage.sql",
   ],