# Copyright 2024 The Chromium Authors | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
source_set("build_state_observer") { | |
public = [ "build_state_observer.h" ] | |
public_deps = [ "//base" ] | |
} | |
source_set("upgrade_detector") { | |
sources = [ "upgrade_observer.h" ] | |
public_deps = [] | |
if (!is_android) { | |
sources += [ "upgrade_detector.h" ] | |
public_deps = [ | |
"//base", | |
"//components/prefs", | |
] | |
} | |
} |