OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//testing/test.gni") |
| 6 |
| 7 component("cast_crash_client") { |
| 8 sources = [ |
| 9 "linux/cast_crash_reporter_client.cc", |
| 10 "linux/cast_crash_reporter_client.h", |
| 11 ] |
| 12 |
| 13 deps = [ |
| 14 "//chromecast/crash", |
| 15 "//components/crash/app", |
| 16 "//content/public/common", |
| 17 ] |
| 18 |
| 19 configs += [ "//chromecast:config" ] |
| 20 } |
| 21 |
| 22 test("cast_shell_unittests") { |
| 23 sources = [ |
| 24 "cast_crash_reporter_client_unittests.cc", |
| 25 ] |
| 26 |
| 27 deps = [ |
| 28 ":cast_crash_client", |
| 29 "//base/test:run_all_unittests", |
| 30 "//testing/gtest", |
| 31 ] |
| 32 } |
OLD | NEW |