| OLD | NEW |
| (Empty) |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("../../../mojo_sdk.gni") | |
| 6 | |
| 7 mojo_sdk_source_set("perftest_helpers") { | |
| 8 testonly = true | |
| 9 | |
| 10 sources = [ | |
| 11 "async_waiter_perftest_helpers.cc", | |
| 12 "async_waiter_perftest_helpers.h", | |
| 13 ] | |
| 14 | |
| 15 mojo_sdk_deps = [ | |
| 16 "mojo/public/c:environment", | |
| 17 "mojo/public/c:system", | |
| 18 "mojo/public/cpp/system", | |
| 19 ] | |
| 20 } | |
| OLD | NEW |