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