| 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_application.gni") | 5 import("../../../mojo_application.gni") |
| 6 | 6 |
| 7 source_set("tests") { | 7 source_set("tests") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 source_set("mojo_public_bindings_test_utils") { | 87 source_set("mojo_public_bindings_test_utils") { |
| 88 sources = [ | 88 sources = [ |
| 89 "validation_test_input_parser.cc", | 89 "validation_test_input_parser.cc", |
| 90 "validation_test_input_parser.h", | 90 "validation_test_input_parser.h", |
| 91 ] | 91 ] |
| 92 | 92 |
| 93 deps = [ | 93 deps = [ |
| 94 "//mojo/public/c/system", | 94 "//mojo/public/c/system", |
| 95 ] | 95 ] |
| 96 } | 96 } |
| 97 |
| 98 component("tests_component") { |
| 99 testonly = true |
| 100 defines = [ "CONTENT_IMPLEMENTATION" ] |
| 101 deps = [ |
| 102 ":tests", |
| 103 "//third_party/mojo/src/mojo/edk/system", |
| 104 # "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 105 # ":mojo_public_bindings_test_utils", |
| 106 # "//mojo/common", |
| 107 # "//mojo/environment:chromium", |
| 108 # "//mojo/message_pump", |
| 109 # "//mojo/public/cpp/bindings", |
| 110 # "//mojo/public/cpp/bindings:callback", |
| 111 # "//mojo/public/cpp/system", |
| 112 # "//mojo/public/cpp/test_support:test_utils", |
| 113 # "//mojo/public/cpp/utility", |
| 114 ] |
| 115 } |
| OLD | NEW |