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

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: Use group instead of a static_library for targets that have no sources. Created 5 years, 1 month 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
« no previous file with comments | « components/safe_browsing_db.gypi ('k') | components/safe_browsing_db/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 group("safe_browsing_db") {
6 deps = [
7 ":prefix_set",
8 ":safe_browsing_db_util",
9 ]
10 }
11
12 source_set("prefix_set") {
13 sources = [
14 "prefix_set.cc",
15 "prefix_set.h",
16 ]
17 deps = [
18 "//base",
19 ]
20 }
21
22 source_set("safe_browsing_db_util") {
23 sources = [
24 "safe_browsing_db_util.cc",
25 "safe_browsing_db_util.h",
26 ]
27 deps = [
28 "//base",
29 "//crypto",
30 ]
31 }
32
33 source_set("unit_tests") {
34 testonly = true
35 sources = [
36 "prefix_set_unittest.cc",
37 "safe_browsing_db_util_unittest.cc",
38 ]
39 deps = [
40 ":prefix_set",
41 ":safe_browsing_db_util",
42 "//base",
43 "//testing/gtest",
44 ]
45 }
OLDNEW
« no previous file with comments | « components/safe_browsing_db.gypi ('k') | components/safe_browsing_db/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698