OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("common") { | 8 component("common") { |
9 output_name = "mojo_common_lib" | 9 output_name = "mojo_common_lib" |
10 | 10 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 76 |
77 mojom("test_interfaces") { | 77 mojom("test_interfaces") { |
78 testonly = true | 78 testonly = true |
79 sources = [ | 79 sources = [ |
80 "test_interfaces.mojom", | 80 "test_interfaces.mojom", |
81 ] | 81 ] |
82 } | 82 } |
83 | 83 |
84 source_set("tracing_impl") { | 84 source_set("tracing_impl") { |
85 sources = [ | 85 sources = [ |
86 "trace_controller_impl.cc", | 86 "trace_provider_impl.cc", |
87 "trace_controller_impl.h", | 87 "trace_provider_impl.h", |
88 "tracing_impl.cc", | 88 "tracing_impl.cc", |
89 "tracing_impl.h", | 89 "tracing_impl.h", |
90 ] | 90 ] |
91 | 91 |
92 deps = [ | 92 deps = [ |
93 "//base", | 93 "//base", |
94 "//mojo/public/cpp/application", | 94 "//mojo/public/cpp/application", |
95 "//mojo/public/cpp/bindings", | 95 "//mojo/public/cpp/bindings", |
96 "//mojo/services/tracing/public/interfaces", | 96 "//mojo/services/tracing/public/interfaces", |
97 ] | 97 ] |
98 } | 98 } |
OLD | NEW |