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

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

Issue 1399843003: Move prefix_set and parts of s_b_util into a new component safe_browsing_db. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 2015 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 source_set("prefix_set") {
6 sources = [
7 "prefix_set.cc",
8 "prefix_set.h",
9 ]
10 deps = [
11 "//base",
12 ]
13 }
14
15 source_set("safe_browsing_db_util") {
16 sources = [
17 "safe_browsing_db_util.cc",
18 "safe_browsing_db_util.h",
19 ]
20 deps = [
21 "//base",
22 ]
23 }
24
25 source_set("prefix_set_unit_tests") {
26 testonly = true
27 sources = [
28 "prefix_set_unittest.cc",
29 ]
30 deps = [
31 ":prefix_set",
32 "//base",
33 "//testing/gtest",
34 ]
35 }
36
37 source_set("safe_browsing_db_util_unit_tests") {
38 testonly = true
39 sources = [
40 "safe_browsing_db_util_unittest.cc",
41 ]
42 deps = [
43 ":safe_browsing_db_util",
44 "//base",
45 "//testing/gtest",
46 ]
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698