Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: components/machine_intelligence/BUILD.gn

Issue 2925733002: Move ranker_model_loader to a new component. (Closed)
Patch Set: Adressing sdefresne's comments. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 static_library("machine_intelligence") {
6 sources = [
7 "ranker_model.cc",
8 "ranker_model.h",
9 "ranker_model_loader.cc",
10 "ranker_model_loader.h",
11 "ranker_url_fetcher.cc",
12 "ranker_url_fetcher.h",
13 ]
14
15 deps = [
16 "//base",
17 "//components/data_use_measurement/core",
18 "//components/machine_intelligence/proto",
19 "//net",
20 "//url",
21 ]
22 }
23
24 source_set("unit_tests") {
25 testonly = true
26
27 sources = [
28 "ranker_model_loader_unittest.cc",
29 "ranker_model_unittest.cc",
30 ]
31
32 deps = [
33 ":machine_intelligence",
34 "//base",
35 "//components/machine_intelligence/proto",
36 "//net:test_support",
37 "//testing/gtest",
38 ]
39 }
OLDNEW
« no previous file with comments | « components/data_use_measurement/core/data_use_user_data.cc ('k') | components/machine_intelligence/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698