| 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 | 6 |
| 7 # GYP version: mojo/mojo_base.gyp:mojo_common_lib | 7 # GYP version: mojo/mojo_base.gyp:mojo_common_lib |
| 8 component("common") { | 8 component("common") { |
| 9 output_name = "mojo_common_lib" | 9 output_name = "mojo_common_lib" |
| 10 | 10 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 ] | 60 ] |
| 61 } | 61 } |
| 62 | 62 |
| 63 source_set("tracing_impl") { | 63 source_set("tracing_impl") { |
| 64 sources = [ | 64 sources = [ |
| 65 "tracing_impl.cc", | 65 "tracing_impl.cc", |
| 66 "tracing_impl.h", | 66 "tracing_impl.h", |
| 67 ] | 67 ] |
| 68 | 68 |
| 69 deps = [ | 69 deps = [ |
| 70 ":tracing_bindings", | |
| 71 "//base", | 70 "//base", |
| 71 "//mojo/public/cpp/application", |
| 72 "//mojo/public/cpp/bindings", | 72 "//mojo/public/cpp/bindings", |
| 73 "//services/tracing:bindings", |
| 73 ] | 74 ] |
| 74 } | 75 } |
| 75 | |
| 76 mojom("tracing_bindings") { | |
| 77 sources = [ "tracing.mojom" ] | |
| 78 } | |
| OLD | NEW |