| 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_edk.gni") | 5 import("../mojo_edk.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 ] | 168 ] |
| 169 | 169 |
| 170 deps = [ | 170 deps = [ |
| 171 ":system", | 171 ":system", |
| 172 "//base", | 172 "//base", |
| 173 "//testing/gtest", | 173 "//testing/gtest", |
| 174 ] | 174 ] |
| 175 | 175 |
| 176 mojo_edk_deps = [ | 176 mojo_edk_deps = [ |
| 177 "mojo/edk/base_edk", | 177 "mojo/edk/base_edk", |
| 178 "mojo/edk/base_edk:test_base_edk", |
| 178 "mojo/edk/system/test", | 179 "mojo/edk/system/test", |
| 179 "mojo/edk/test:test_support", | 180 "mojo/edk/test:test_support", |
| 180 "mojo/edk/util", | 181 "mojo/edk/util", |
| 181 ] | 182 ] |
| 182 } | 183 } |
| 183 | 184 |
| 184 mojo_edk_perftests("mojo_edk_system_perftests") { | 185 mojo_edk_perftests("mojo_edk_system_perftests") { |
| 185 sources = [ | 186 sources = [ |
| 186 "message_pipe_perftest.cc", | 187 "message_pipe_perftest.cc", |
| 187 "message_pipe_test_utils.cc", | 188 "message_pipe_test_utils.cc", |
| 188 "message_pipe_test_utils.h", | 189 "message_pipe_test_utils.h", |
| 189 ] | 190 ] |
| 190 | 191 |
| 191 deps = [ | 192 deps = [ |
| 192 ":system", | 193 ":system", |
| 193 "//base", | 194 "//base", |
| 194 "//testing/gtest", | 195 "//testing/gtest", |
| 195 ] | 196 ] |
| 196 | 197 |
| 197 mojo_edk_deps = [ | 198 mojo_edk_deps = [ |
| 198 # TODO(vtl): Add separate test targets for this. | 199 # TODO(vtl): Add separate test targets for this. |
| 199 "mojo/edk/util:perftests", | 200 "mojo/edk/util:perftests", |
| 200 | 201 |
| 201 "mojo/edk/system/test", | 202 "mojo/edk/system/test", |
| 202 "mojo/edk/system/test:perf", | 203 "mojo/edk/system/test:perf", |
| 203 "mojo/edk/test:test_support", | 204 "mojo/edk/test:test_support", |
| 204 ] | 205 ] |
| 205 } | 206 } |
| OLD | NEW |