| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
| 7 | 7 |
| 8 test("mojo_task_tracker_perftests") { | 8 test("mojo_task_tracker_perftests") { |
| 9 deps = [ | 9 deps = [ |
| 10 "//base/test:test_support", | 10 "//base/test:test_support", |
| 11 "//mojo/edk/system", | 11 "//mojo/edk/system", |
| 12 "//mojo/edk/test:test_support", | 12 "//mojo/edk/test:test_support", |
| 13 "//mojo/edk/test:test_support_impl", | 13 "//mojo/edk/test:test_support_impl", |
| 14 "//mojo/environment:chromium", | 14 "//mojo/environment:chromium", |
| 15 "//mojo/message_pump", | 15 "//mojo/message_pump", |
| 16 "//mojo/public/c/test_support", | 16 "//mojo/public/c/test_support", |
| 17 "//mojo/public/cpp/bindings", | 17 "//mojo/public/cpp/bindings", |
| 18 "//mojo/public/cpp/bindings:callback", | 18 "//mojo/public/cpp/bindings:callback", |
| 19 "//mojo/public/cpp/environment", | 19 "//mojo/public/cpp/environment", |
| 20 "//mojo/public/cpp/system", | 20 "//mojo/public/cpp/system", |
| 21 "//mojo/public/cpp/test_support:test_utils", | 21 "//mojo/public/cpp/test_support", |
| 22 "//mojo/public/cpp/utility", | 22 "//mojo/public/cpp/utility", |
| 23 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 23 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 24 "//base", | 24 "//base", |
| 25 "//testing/gtest", | 25 "//testing/gtest", |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 sources = [ | 28 sources = [ |
| 29 "../edk/test/run_all_perftests.cc", | 29 "../edk/test/run_all_perftests.cc", |
| 30 "task_tracker_perftest.cc", | 30 "task_tracker_perftest.cc", |
| 31 ] | 31 ] |
| 32 } | 32 } |
| OLD | NEW |