| Index: chromecast/app/BUILD.gn
|
| diff --git a/chromecast/app/BUILD.gn b/chromecast/app/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2b6a72368c40b94a60a6990199089dccfc64a047
|
| --- /dev/null
|
| +++ b/chromecast/app/BUILD.gn
|
| @@ -0,0 +1,32 @@
|
| +# Copyright 2015 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import("//testing/test.gni")
|
| +
|
| +component("cast_crash_client") {
|
| + sources = [
|
| + "linux/cast_crash_reporter_client.cc",
|
| + "linux/cast_crash_reporter_client.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//chromecast/crash",
|
| + "//components/crash/app",
|
| + "//content/public/common",
|
| + ]
|
| +
|
| + configs += [ "//chromecast:config" ]
|
| +}
|
| +
|
| +test("cast_shell_unittests") {
|
| + sources = [
|
| + "cast_crash_reporter_client_unittests.cc",
|
| + ]
|
| +
|
| + deps = [
|
| + ":cast_crash_client",
|
| + "//base/test:run_all_unittests",
|
| + "//testing/gtest",
|
| + ]
|
| +}
|
|
|