1# Copyright 2016 The Chromium Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5import("//mojo/public/tools/bindings/mojom.gni") 6 7mojom("call_stack_mojo_bindings") { 8 sources = [ "call_stack_profile_collector.mojom" ] 9 10 deps = [ "//mojo/public/mojom/base" ] 11} 12 13mojom("call_stack_mojo_test_bindings") { 14 sources = [ "call_stack_profile_collector_test.mojom" ] 15 16 deps = [ ":call_stack_mojo_bindings" ] 17} 18 19mojom("single_sample_metrics_mojo_bindings") { 20 sources = [ "single_sample_metrics.mojom" ] 21} 22 23mojom("histogram_fetcher_mojo_bindings") { 24 sources = [ "histogram_fetcher.mojom" ] 25 26 deps = [ "//mojo/public/mojom/base" ] 27} 28