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 10 matching lines...) Expand all Loading... |
21 "time_helper.cc", | 21 "time_helper.cc", |
22 "time_helper.h", | 22 "time_helper.h", |
23 "weak_binding_set.h", | 23 "weak_binding_set.h", |
24 ] | 24 ] |
25 | 25 |
26 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] | 26 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] |
27 | 27 |
28 deps = [ | 28 deps = [ |
29 "//base", | 29 "//base", |
30 "//base/third_party/dynamic_annotations", | 30 "//base/third_party/dynamic_annotations", |
31 "//mojo/public/c/system:for_component", | 31 "//mojo/public/c/system", |
32 "//mojo/public/cpp/bindings", | 32 "//mojo/public/cpp/bindings", |
33 "//mojo/public/cpp/system", | 33 "//mojo/public/cpp/system", |
34 "//url", | 34 "//url", |
35 ] | 35 ] |
36 } | 36 } |
37 | 37 |
38 # GYP version: mojo/mojo_base.gyp:mojo_common_unittests | 38 # GYP version: mojo/mojo_base.gyp:mojo_common_unittests |
39 test("mojo_common_unittests") { | 39 test("mojo_common_unittests") { |
40 sources = [ | 40 sources = [ |
41 "common_type_converters_unittest.cc", | 41 "common_type_converters_unittest.cc", |
(...skipping 24 matching lines...) Expand all Loading... |
66 "tracing_impl.h", | 66 "tracing_impl.h", |
67 ] | 67 ] |
68 | 68 |
69 deps = [ | 69 deps = [ |
70 "//base", | 70 "//base", |
71 "//mojo/public/cpp/application", | 71 "//mojo/public/cpp/application", |
72 "//mojo/public/cpp/bindings", | 72 "//mojo/public/cpp/bindings", |
73 "//services/tracing:bindings", | 73 "//services/tracing:bindings", |
74 ] | 74 ] |
75 } | 75 } |
OLD | NEW |