| 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 | 6 |
| 7 # Works only on desktop platforms. | 7 # Works only on desktop platforms. |
| 8 assert(is_win || is_linux || is_mac) | 8 assert(is_win || is_linux || is_mac) |
| 9 | 9 |
| 10 executable("battor_agent") { | 10 executable("battor_agent") { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "//base", | 52 "//base", |
| 53 "//base/test:run_all_unittests", | 53 "//base/test:run_all_unittests", |
| 54 "//base/test:test_support", | 54 "//base/test:test_support", |
| 55 "//device/serial", | 55 "//device/serial", |
| 56 "//device/serial:test_support", | 56 "//device/serial:test_support", |
| 57 "//mojo/public/c/system:for_shared_library", | 57 "//mojo/public/c/system:for_shared_library", |
| 58 "//testing/gmock", | 58 "//testing/gmock", |
| 59 "//testing/gtest", | 59 "//testing/gtest", |
| 60 ] | 60 ] |
| 61 } | 61 } |
| 62 | |
| 63 # TODO(GYP): Delete this after we've converted everything to GN. | |
| 64 # The _run targets exist only for compatibility w/ GYP. | |
| 65 group("battor_agent_unittests_run") { | |
| 66 testonly = true | |
| 67 deps = [ | |
| 68 ":battor_agent_unittests", | |
| 69 ] | |
| 70 } | |
| OLD | NEW |