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

Unified Diff: components/safe_browsing_db.gypi

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: Suppress the 4267 warning in BUILD.gn 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/components_tests.gyp ('k') | components/safe_browsing_db/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/safe_browsing_db.gypi
diff --git a/components/packed_ct_ev_whitelist.gypi b/components/safe_browsing_db.gypi
similarity index 50%
copy from components/packed_ct_ev_whitelist.gypi
copy to components/safe_browsing_db.gypi
index e58129c6b920883c2bf94410ad8e50e23378b38b..c5cec12cabe37168dd44159a8b9ff47b7bd474ee 100644
--- a/components/packed_ct_ev_whitelist.gypi
+++ b/components/safe_browsing_db.gypi
@@ -1,27 +1,26 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
+# Copyright 2015 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.
{
'targets': [
{
- # GN version: //components/packed_ct_ev_whitelist
- 'target_name': 'packed_ct_ev_whitelist',
+ # GN version: //components/safe_browsing_db
+ 'target_name': 'safe_browsing_db',
'type': 'static_library',
- 'include_dirs': [
- '..',
- ],
'dependencies': [
'../base/base.gyp:base',
- '../content/content.gyp:content_common',
- '../net/net.gyp:net',
+ '../crypto/crypto.gyp:crypto',
],
'sources': [
# Note: sources list duplicated in GN build.
- 'packed_ct_ev_whitelist/bit_stream_reader.cc',
- 'packed_ct_ev_whitelist/bit_stream_reader.h',
- 'packed_ct_ev_whitelist/packed_ct_ev_whitelist.cc',
- 'packed_ct_ev_whitelist/packed_ct_ev_whitelist.h',
+ 'safe_browsing_db/prefix_set.h',
+ 'safe_browsing_db/prefix_set.cc',
+ 'safe_browsing_db/safe_browsing_db_util.h',
+ 'safe_browsing_db/safe_browsing_db_util.cc',
+ ],
+ 'include_dirs': [
+ '..',
],
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [4267, ],
« no previous file with comments | « components/components_tests.gyp ('k') | components/safe_browsing_db/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698