| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "struct_with_traits_impl.cc", | 45 "struct_with_traits_impl.cc", |
| 46 "struct_with_traits_impl.h", | 46 "struct_with_traits_impl.h", |
| 47 "sync_method_unittest.cc", | 47 "sync_method_unittest.cc", |
| 48 "type_conversion_unittest.cc", | 48 "type_conversion_unittest.cc", |
| 49 "union_unittest.cc", | 49 "union_unittest.cc", |
| 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/environment:chromium", | |
| 56 "//mojo/message_pump", | 55 "//mojo/message_pump", |
| 57 "//mojo/public/cpp/bindings", | 56 "//mojo/public/cpp/bindings", |
| 58 "//mojo/public/cpp/bindings:callback", | 57 "//mojo/public/cpp/bindings:callback", |
| 59 "//mojo/public/cpp/system", | 58 "//mojo/public/cpp/system", |
| 60 "//mojo/public/cpp/test_support:test_utils", | 59 "//mojo/public/cpp/test_support:test_utils", |
| 61 "//mojo/public/cpp/utility", | 60 "//mojo/public/cpp/utility", |
| 62 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 61 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
| 63 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 62 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 64 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", | 63 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", |
| 65 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium", | 64 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 76 "bindings_perftest.cc", | 75 "bindings_perftest.cc", |
| 77 "e2e_perftest.cc", | 76 "e2e_perftest.cc", |
| 78 ] | 77 ] |
| 79 | 78 |
| 80 deps = [ | 79 deps = [ |
| 81 "//base/test:test_support", | 80 "//base/test:test_support", |
| 82 "//mojo/edk/test:test_support", | 81 "//mojo/edk/test:test_support", |
| 83 "//mojo/message_pump", | 82 "//mojo/message_pump", |
| 84 "//mojo/public/cpp/bindings", | 83 "//mojo/public/cpp/bindings", |
| 85 "//mojo/public/cpp/bindings:callback", | 84 "//mojo/public/cpp/bindings:callback", |
| 86 "//mojo/public/cpp/environment:standalone", | |
| 87 "//mojo/public/cpp/system", | 85 "//mojo/public/cpp/system", |
| 88 "//mojo/public/cpp/test_support:test_utils", | 86 "//mojo/public/cpp/test_support:test_utils", |
| 89 "//mojo/public/cpp/utility", | 87 "//mojo/public/cpp/utility", |
| 90 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 88 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 91 "//testing/gtest", | 89 "//testing/gtest", |
| 92 ] | 90 ] |
| 93 } | 91 } |
| 94 | 92 |
| 95 source_set("mojo_public_bindings_test_utils") { | 93 source_set("mojo_public_bindings_test_utils") { |
| 96 sources = [ | 94 sources = [ |
| 97 "validation_test_input_parser.cc", | 95 "validation_test_input_parser.cc", |
| 98 "validation_test_input_parser.h", | 96 "validation_test_input_parser.h", |
| 99 ] | 97 ] |
| 100 | 98 |
| 101 deps = [ | 99 deps = [ |
| 102 "//mojo/public/c/system", | 100 "//mojo/public/c/system", |
| 103 ] | 101 ] |
| 104 } | 102 } |
| OLD | NEW |