| 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 source_set("tests") { | 5 source_set("tests") { |
| 6 testonly = true | 6 testonly = true |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "associated_interface_unittest.cc", | 9 "associated_interface_unittest.cc", |
| 10 "bind_task_runner_unittest.cc", | 10 "bind_task_runner_unittest.cc", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "//base/test:test_support", | 45 "//base/test:test_support", |
| 46 "//mojo/edk/system", | 46 "//mojo/edk/system", |
| 47 "//mojo/public/cpp/bindings", | 47 "//mojo/public/cpp/bindings", |
| 48 "//mojo/public/cpp/system", | 48 "//mojo/public/cpp/system", |
| 49 "//mojo/public/cpp/test_support:test_utils", | 49 "//mojo/public/cpp/test_support:test_utils", |
| 50 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 50 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
| 51 "//mojo/public/interfaces/bindings/tests:test_export_component", | 51 "//mojo/public/interfaces/bindings/tests:test_export_component", |
| 52 "//mojo/public/interfaces/bindings/tests:test_export_component2", | 52 "//mojo/public/interfaces/bindings/tests:test_export_component2", |
| 53 "//mojo/public/interfaces/bindings/tests:test_exported_import", | 53 "//mojo/public/interfaces/bindings/tests:test_exported_import", |
| 54 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 54 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 55 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", | |
| 56 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", | 55 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", |
| 57 "//testing/gtest", | 56 "//testing/gtest", |
| 58 ] | 57 ] |
| 59 | 58 |
| 60 data = [ | 59 data = [ |
| 61 "//mojo/public/interfaces/bindings/tests/data/validation/", | 60 "//mojo/public/interfaces/bindings/tests/data/validation/", |
| 62 ] | 61 ] |
| 63 | 62 |
| 64 if (is_ios) { | 63 if (is_ios) { |
| 65 assert_no_deps = [ "//third_party/WebKit/*" ] | 64 assert_no_deps = [ "//third_party/WebKit/*" ] |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 source_set("mojo_public_bindings_test_utils") { | 137 source_set("mojo_public_bindings_test_utils") { |
| 139 sources = [ | 138 sources = [ |
| 140 "validation_test_input_parser.cc", | 139 "validation_test_input_parser.cc", |
| 141 "validation_test_input_parser.h", | 140 "validation_test_input_parser.h", |
| 142 ] | 141 ] |
| 143 | 142 |
| 144 deps = [ | 143 deps = [ |
| 145 "//mojo/public/c/system", | 144 "//mojo/public/c/system", |
| 146 ] | 145 ] |
| 147 } | 146 } |
| OLD | NEW |