mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-25 06:46:09 +03:00
30 lines
766 B
Plaintext
30 lines
766 B
Plaintext
|
# 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",
|
||
|
]
|
||
|
}
|