| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("../../../mojo/public/tools/bindings/mojom.gni") | 6 import("../../../mojo/public/tools/bindings/mojom.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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 } | 161 } |
| 162 | 162 |
| 163 deps = [ | 163 deps = [ |
| 164 ":test_utils", | 164 ":test_utils", |
| 165 "//base", | 165 "//base", |
| 166 "//base/test:test_support", | 166 "//base/test:test_support", |
| 167 "//mojo/edk/embedder:embedder_unittests", | 167 "//mojo/edk/embedder:embedder_unittests", |
| 168 "//mojo/edk/system", | 168 "//mojo/edk/system", |
| 169 "//mojo/edk/test:run_all_unittests", | 169 "//mojo/edk/test:run_all_unittests", |
| 170 "//mojo/edk/test:test_support", | 170 "//mojo/edk/test:test_support", |
| 171 "//mojo/public/cpp/environment:standalone", | |
| 172 "//testing/gtest", | 171 "//testing/gtest", |
| 173 ] | 172 ] |
| 174 | 173 |
| 175 allow_circular_includes_from = [ "//mojo/edk/embedder:embedder_unittests" ] | 174 allow_circular_includes_from = [ "//mojo/edk/embedder:embedder_unittests" ] |
| 176 } | 175 } |
| 177 | 176 |
| 178 test("mojo_message_pipe_perftests") { | 177 test("mojo_message_pipe_perftests") { |
| 179 sources = [ | 178 sources = [ |
| 180 "message_pipe_perftest.cc", | 179 "message_pipe_perftest.cc", |
| 181 ] | 180 ] |
| 182 | 181 |
| 183 deps = [ | 182 deps = [ |
| 184 ":test_utils", | 183 ":test_utils", |
| 185 "//base", | 184 "//base", |
| 186 "//base/test:test_support", | 185 "//base/test:test_support", |
| 187 "//mojo/edk/system", | 186 "//mojo/edk/system", |
| 188 "//mojo/edk/test:run_all_perftests", | 187 "//mojo/edk/test:run_all_perftests", |
| 189 "//mojo/edk/test:test_support", | 188 "//mojo/edk/test:test_support", |
| 190 "//mojo/public/cpp/environment:standalone", | |
| 191 "//testing/gtest", | 189 "//testing/gtest", |
| 192 ] | 190 ] |
| 193 } | 191 } |
| OLD | NEW |