blob: 6c6a71da79224a52c086b067d4ed945537f06053 [file] [log] [blame]
# 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")
source_set("reboot") {
sources = [
"reboot.h",
]
deps = [
"//base",
]
if (chromecast_branding == "public") {
sources += [ "reboot_dummy.cc" ]
} else {
# TODO(ameyak): Remove once google implementation is upstreamed
deps += [ "//chromecast/internal/common/reboot" ]
}
}