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

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

Issue 1415923004: Move prefix_set and parts of safe_browsing_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
« 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.
blundell 2015/10/23 07:10:29 You need to suppress the warning in this file as w
vakh (old account. dont use) 2015/10/27 19:49:04 Done.
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") {
blundell 2015/10/23 07:10:29 This is really a comment for the original CL, but:
vakh (old account. dont use) 2015/10/27 19:49:04 2 reasons: 1. I am more familiar with BUILD files
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