| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 deps = [ | 167 deps = [ |
| 168 ":system", | 168 ":system", |
| 169 ":test_utils", | 169 ":test_utils", |
| 170 "../embedder:embedder_unittests", | 170 "../embedder:embedder_unittests", |
| 171 "../test:test_support", | 171 "../test:test_support", |
| 172 "//base", | 172 "//base", |
| 173 "//base/test:test_support", | 173 "//base/test:test_support", |
| 174 "//testing/gtest", | 174 "//testing/gtest", |
| 175 ] | 175 ] |
| 176 | 176 |
| 177 if (is_android) { | |
| 178 deps += [ "//testing/android:native_test_native_code" ] | |
| 179 } | |
| 180 | |
| 181 allow_circular_includes_from = [ "../embedder:embedder_unittests" ] | 177 allow_circular_includes_from = [ "../embedder:embedder_unittests" ] |
| 182 } | 178 } |
| 183 | 179 |
| 184 # GYP version: mojo/edk/mojo_edk.gyp:mojo_message_pipe_perftests | 180 # GYP version: mojo/edk/mojo_edk.gyp:mojo_message_pipe_perftests |
| 185 test("mojo_message_pipe_perftests") { | 181 test("mojo_message_pipe_perftests") { |
| 186 sources = [ | 182 sources = [ |
| 187 "message_pipe_perftest.cc", | 183 "message_pipe_perftest.cc", |
| 188 "message_pipe_test_utils.h", | 184 "message_pipe_test_utils.h", |
| 189 "message_pipe_test_utils.cc", | 185 "message_pipe_test_utils.cc", |
| 190 ] | 186 ] |
| 191 | 187 |
| 192 deps = [ | 188 deps = [ |
| 193 ":system", | 189 ":system", |
| 194 ":test_utils", | 190 ":test_utils", |
| 195 "../test:test_support", | 191 "../test:test_support", |
| 196 "//base", | 192 "//base", |
| 197 "//base/test:test_support", | 193 "//base/test:test_support", |
| 198 "//base/test:test_support_perf", | 194 "//base/test:test_support_perf", |
| 199 "//testing/gtest", | 195 "//testing/gtest", |
| 200 ] | 196 ] |
| 201 } | 197 } |
| OLD | NEW |