| 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 source_set("common") { | 8 source_set("common") { |
| 9 sources = [ | 9 sources = [ |
| 10 "binding_set.h", | 10 "binding_set.h", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 "//mojo/public/cpp/bindings", | 36 "//mojo/public/cpp/bindings", |
| 37 "//mojo/public/cpp/bindings:callback", | 37 "//mojo/public/cpp/bindings:callback", |
| 38 "//mojo/public/cpp/system", | 38 "//mojo/public/cpp/system", |
| 39 "//testing/gtest", | 39 "//testing/gtest", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| 42 | 42 |
| 43 test("mojo_common_unittests") { | 43 test("mojo_common_unittests") { |
| 44 deps = [ | 44 deps = [ |
| 45 ":tests", | 45 ":tests", |
| 46 "//mojo/converters/array_string:tests", | |
| 47 "//mojo/converters/base:tests", | |
| 48 "//mojo/converters/url:tests", | |
| 49 "//mojo/data_pipe_utils:tests", | 46 "//mojo/data_pipe_utils:tests", |
| 50 "//mojo/edk/test:run_all_unittests", | 47 "//mojo/edk/test:run_all_unittests", |
| 51 "//mojo/environment:chromium", | 48 "//mojo/environment:chromium", |
| 52 "//mojo/message_pump:tests", | 49 "//mojo/message_pump:tests", |
| 53 ] | 50 ] |
| 54 } | 51 } |
| 55 | 52 |
| 56 mojom("test_interfaces") { | 53 mojom("test_interfaces") { |
| 57 testonly = true | 54 testonly = true |
| 58 sources = [ | 55 sources = [ |
| 59 "test_interfaces.mojom", | 56 "test_interfaces.mojom", |
| 60 ] | 57 ] |
| 61 } | 58 } |
| 62 | 59 |
| 63 source_set("tracing_impl") { | 60 source_set("tracing_impl") { |
| 64 sources = [ | 61 sources = [ |
| 65 "trace_provider_impl.cc", | 62 "trace_provider_impl.cc", |
| 66 "trace_provider_impl.h", | 63 "trace_provider_impl.h", |
| 67 "tracing_impl.cc", | 64 "tracing_impl.cc", |
| 68 "tracing_impl.h", | 65 "tracing_impl.h", |
| 69 ] | 66 ] |
| 70 | 67 |
| 71 deps = [ | 68 deps = [ |
| 72 "//base", | 69 "//base", |
| 73 "//mojo/public/cpp/application", | 70 "//mojo/public/cpp/application", |
| 74 "//mojo/public/cpp/bindings", | 71 "//mojo/public/cpp/bindings", |
| 75 "//mojo/services/tracing/interfaces", | 72 "//mojo/services/tracing/interfaces", |
| 76 ] | 73 ] |
| 77 } | 74 } |
| OLD | NEW |