| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 ":mojo_public_bindings_test_utils", | 42 ":mojo_public_bindings_test_utils", |
| 43 "//mojo/environment:chromium", | 43 "//mojo/environment:chromium", |
| 44 "//mojo/message_pump", | 44 "//mojo/message_pump", |
| 45 "//mojo/public/cpp/bindings", | 45 "//mojo/public/cpp/bindings", |
| 46 "//mojo/public/cpp/bindings:callback", | 46 "//mojo/public/cpp/bindings:callback", |
| 47 "//mojo/public/cpp/system", | 47 "//mojo/public/cpp/system", |
| 48 "//mojo/public/cpp/test_support:test_utils", | 48 "//mojo/public/cpp/test_support:test_utils", |
| 49 "//mojo/public/cpp/utility", | 49 "//mojo/public/cpp/utility", |
| 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_interfaces", | 51 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 52 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", |
| 53 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium", |
| 52 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", | 54 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", |
| 53 "//testing/gtest", | 55 "//testing/gtest", |
| 54 ] | 56 ] |
| 55 } | 57 } |
| 56 | 58 |
| 57 source_set("perftests") { | 59 source_set("perftests") { |
| 58 testonly = true | 60 testonly = true |
| 59 | 61 |
| 60 sources = [ | 62 sources = [ |
| 61 "bindings_perftest.cc", | 63 "bindings_perftest.cc", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 76 source_set("mojo_public_bindings_test_utils") { | 78 source_set("mojo_public_bindings_test_utils") { |
| 77 sources = [ | 79 sources = [ |
| 78 "validation_test_input_parser.cc", | 80 "validation_test_input_parser.cc", |
| 79 "validation_test_input_parser.h", | 81 "validation_test_input_parser.h", |
| 80 ] | 82 ] |
| 81 | 83 |
| 82 deps = [ | 84 deps = [ |
| 83 "//mojo/public/c/system", | 85 "//mojo/public/c/system", |
| 84 ] | 86 ] |
| 85 } | 87 } |
| OLD | NEW |