naiveproxy/chrome/browser/chromeos/power/ml/smart_dim/BUILD.gn

30 lines
766 B
Plaintext
Raw Normal View History

2018-12-10 05:59:24 +03:00
# Copyright 2018 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.
source_set("smart_dim") {
# Dependent targets should not include tf_native_inference.h directly.
public = [
"model.h",
"model_impl.h",
]
sources = [
"model_impl.cc",
"tf_native_inference.cc",
"tf_native_inference.h",
]
deps = [
"//base",
"//chrome/browser:resources",
"//chrome/browser/chromeos:user_activity_event_proto",
"//chrome/browser/chromeos/power/ml:user_activity_ukm_logger_helpers",
"//chrome/common:constants",
"//components/assist_ranker",
"//components/assist_ranker/proto",
"//components/sessions",
"//ui/base",
]
}