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 | 7 |
7 # GYP version: mojo/mojo_base.gyp:mojo_common_lib | 8 # GYP version: mojo/mojo_base.gyp:mojo_common_lib |
8 component("common") { | 9 component("common") { |
9 output_name = "mojo_common_lib" | 10 output_name = "mojo_common_lib" |
10 | 11 |
11 sources = [ | 12 sources = [ |
12 "common_type_converters.cc", | 13 "common_type_converters.cc", |
13 "common_type_converters.h", | 14 "common_type_converters.h", |
14 "data_pipe_utils.cc", | 15 "data_pipe_utils.cc", |
15 "data_pipe_utils.h", | 16 "data_pipe_utils.h", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 "tracing_impl.h", | 69 "tracing_impl.h", |
69 ] | 70 ] |
70 | 71 |
71 deps = [ | 72 deps = [ |
72 "//base", | 73 "//base", |
73 "//mojo/public/cpp/application", | 74 "//mojo/public/cpp/application", |
74 "//mojo/public/cpp/bindings", | 75 "//mojo/public/cpp/bindings", |
75 "//services/tracing:bindings", | 76 "//services/tracing:bindings", |
76 ] | 77 ] |
77 } | 78 } |
OLD | NEW |