mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
62 lines
1.3 KiB
Plaintext
62 lines
1.3 KiB
Plaintext
|
# Copyright 2016 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("//chromecast/chromecast.gni")
|
||
|
import("//testing/test.gni")
|
||
|
|
||
|
cast_source_set("reboot_util") {
|
||
|
sources = [
|
||
|
"reboot_util.h",
|
||
|
"reboot_util_core.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
]
|
||
|
|
||
|
if (chromecast_branding == "google") {
|
||
|
deps += [ "//chromecast/internal/system/reboot:reboot_util" ]
|
||
|
} else {
|
||
|
sources += [ "reboot_util_dummy.cc" ]
|
||
|
}
|
||
|
|
||
|
if (is_android_things && chromecast_branding != "public") {
|
||
|
deps += [
|
||
|
"//chromecast/internal/system/reboot/android:reboot_android_things",
|
||
|
"//chromecast/public",
|
||
|
]
|
||
|
} else if (is_android) {
|
||
|
sources += [ "reboot_dummy.cc" ]
|
||
|
deps += [ "//chromecast/public" ]
|
||
|
} else {
|
||
|
deps += [ ":libcast_reboot_1.0" ]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
test("cast_reboot_unittests") {
|
||
|
sources = [
|
||
|
"reboot_util_test.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
":reboot_util",
|
||
|
"//base/test:run_all_unittests",
|
||
|
"//base/test:test_support",
|
||
|
"//testing/gmock",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
# Target for OEM partners to override reboot shared library, i.e.
|
||
|
# libcast_reboot_1.0.so.
|
||
|
cast_shared_library("libcast_reboot_1.0") {
|
||
|
sources = [
|
||
|
"reboot_dummy.cc",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
"//chromecast/public",
|
||
|
]
|
||
|
}
|