| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "validation_unittest.cc", | 50 "validation_unittest.cc", |
| 51 ] | 51 ] |
| 52 | 52 |
| 53 deps = [ | 53 deps = [ |
| 54 ":mojo_public_bindings_test_utils", | 54 ":mojo_public_bindings_test_utils", |
| 55 "//mojo/message_pump", | 55 "//mojo/message_pump", |
| 56 "//mojo/public/cpp/bindings", | 56 "//mojo/public/cpp/bindings", |
| 57 "//mojo/public/cpp/bindings:callback", | 57 "//mojo/public/cpp/bindings:callback", |
| 58 "//mojo/public/cpp/system", | 58 "//mojo/public/cpp/system", |
| 59 "//mojo/public/cpp/test_support:test_utils", | 59 "//mojo/public/cpp/test_support:test_utils", |
| 60 "//mojo/public/cpp/utility", | |
| 61 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 60 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
| 62 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 61 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 63 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", | 62 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", |
| 64 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium", | 63 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium", |
| 65 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", | 64 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", |
| 66 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", | 65 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", |
| 67 "//testing/gtest", | 66 "//testing/gtest", |
| 68 ] | 67 ] |
| 69 } | 68 } |
| 70 | 69 |
| 71 source_set("perftests") { | 70 source_set("perftests") { |
| 72 testonly = true | 71 testonly = true |
| 73 | 72 |
| 74 sources = [ | 73 sources = [ |
| 75 "bindings_perftest.cc", | 74 "bindings_perftest.cc", |
| 76 "e2e_perftest.cc", | 75 "e2e_perftest.cc", |
| 77 ] | 76 ] |
| 78 | 77 |
| 79 deps = [ | 78 deps = [ |
| 80 "//base/test:test_support", | 79 "//base/test:test_support", |
| 81 "//mojo/edk/test:test_support", | 80 "//mojo/edk/test:test_support", |
| 82 "//mojo/message_pump", | 81 "//mojo/message_pump", |
| 83 "//mojo/public/cpp/bindings", | 82 "//mojo/public/cpp/bindings", |
| 84 "//mojo/public/cpp/bindings:callback", | 83 "//mojo/public/cpp/bindings:callback", |
| 85 "//mojo/public/cpp/system", | 84 "//mojo/public/cpp/system", |
| 86 "//mojo/public/cpp/test_support:test_utils", | 85 "//mojo/public/cpp/test_support:test_utils", |
| 87 "//mojo/public/cpp/utility", | |
| 88 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 86 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 89 "//testing/gtest", | 87 "//testing/gtest", |
| 90 ] | 88 ] |
| 91 } | 89 } |
| 92 | 90 |
| 93 source_set("mojo_public_bindings_test_utils") { | 91 source_set("mojo_public_bindings_test_utils") { |
| 94 sources = [ | 92 sources = [ |
| 95 "validation_test_input_parser.cc", | 93 "validation_test_input_parser.cc", |
| 96 "validation_test_input_parser.h", | 94 "validation_test_input_parser.h", |
| 97 ] | 95 ] |
| 98 | 96 |
| 99 deps = [ | 97 deps = [ |
| 100 "//mojo/public/c/system", | 98 "//mojo/public/c/system", |
| 101 ] | 99 ] |
| 102 } | 100 } |
| OLD | NEW |