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

Side by Side Diff: net/net.gypi

Issue 1016643004: Moves SQLitePersistentCookieStore to net/extras/sqlite. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cookies
Patch Set: Rebased. Created 5 years, 8 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This file is shared between the regular GYP build, the NaCl GYP build, and 5 # This file is shared between the regular GYP build, the NaCl GYP build, and
6 # the GN build. For GN support, it must have no conditionals or anything like 6 # the GN build. For GN support, it must have no conditionals or anything like
7 # that beyond the simple one-level-deep dictionary of values. 7 # that beyond the simple one-level-deep dictionary of values.
8 { 8 {
9 'variables': { 9 'variables': {
10 # Subset of net source files that are compiled for NaCl (net_nacl target). 10 # Subset of net source files that are compiled for NaCl (net_nacl target).
(...skipping 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after
1244 'websockets/websocket_inflater.cc', 1244 'websockets/websocket_inflater.cc',
1245 'websockets/websocket_inflater.h', 1245 'websockets/websocket_inflater.h',
1246 'websockets/websocket_mux.h', 1246 'websockets/websocket_mux.h',
1247 'websockets/websocket_stream.cc', 1247 'websockets/websocket_stream.cc',
1248 'websockets/websocket_stream.h', 1248 'websockets/websocket_stream.h',
1249 ], 1249 ],
1250 'net_extras_sources': [ 1250 'net_extras_sources': [
1251 'extras/sqlite/cookie_crypto_delegate.h', 1251 'extras/sqlite/cookie_crypto_delegate.h',
1252 'extras/sqlite/sqlite_channel_id_store.cc', 1252 'extras/sqlite/sqlite_channel_id_store.cc',
1253 'extras/sqlite/sqlite_channel_id_store.h', 1253 'extras/sqlite/sqlite_channel_id_store.h',
1254 'extras/sqlite/sqlite_persistent_cookie_store.cc',
1255 'extras/sqlite/sqlite_persistent_cookie_store.h',
1254 ], 1256 ],
1255 'net_test_sources': [ 1257 'net_test_sources': [
1256 'android/keystore_unittest.cc', 1258 'android/keystore_unittest.cc',
1257 'android/network_change_notifier_android_unittest.cc', 1259 'android/network_change_notifier_android_unittest.cc',
1258 'base/address_list_unittest.cc', 1260 'base/address_list_unittest.cc',
1259 'base/address_tracker_linux_unittest.cc', 1261 'base/address_tracker_linux_unittest.cc',
1260 'base/backoff_entry_unittest.cc', 1262 'base/backoff_entry_unittest.cc',
1261 'base/chunked_upload_data_stream_unittest.cc', 1263 'base/chunked_upload_data_stream_unittest.cc',
1262 'base/data_url_unittest.cc', 1264 'base/data_url_unittest.cc',
1263 'base/directory_lister_unittest.cc', 1265 'base/directory_lister_unittest.cc',
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
1356 'dns/host_resolver_mojo_unittest.cc', 1358 'dns/host_resolver_mojo_unittest.cc',
1357 'dns/mapped_host_resolver_unittest.cc', 1359 'dns/mapped_host_resolver_unittest.cc',
1358 'dns/mdns_cache_unittest.cc', 1360 'dns/mdns_cache_unittest.cc',
1359 'dns/mdns_client_unittest.cc', 1361 'dns/mdns_client_unittest.cc',
1360 'dns/mojo_host_resolver_impl_unittest.cc', 1362 'dns/mojo_host_resolver_impl_unittest.cc',
1361 'dns/record_parsed_unittest.cc', 1363 'dns/record_parsed_unittest.cc',
1362 'dns/record_rdata_unittest.cc', 1364 'dns/record_rdata_unittest.cc',
1363 'dns/serial_worker_unittest.cc', 1365 'dns/serial_worker_unittest.cc',
1364 'dns/single_request_host_resolver_unittest.cc', 1366 'dns/single_request_host_resolver_unittest.cc',
1365 'extras/sqlite/sqlite_channel_id_store_unittest.cc', 1367 'extras/sqlite/sqlite_channel_id_store_unittest.cc',
1368 'extras/sqlite/sqlite_persistent_cookie_store_unittest.cc',
1366 'filter/filter_unittest.cc', 1369 'filter/filter_unittest.cc',
1367 'filter/gzip_filter_unittest.cc', 1370 'filter/gzip_filter_unittest.cc',
1368 'filter/mock_filter_context.cc', 1371 'filter/mock_filter_context.cc',
1369 'filter/mock_filter_context.h', 1372 'filter/mock_filter_context.h',
1370 'filter/sdch_filter_unittest.cc', 1373 'filter/sdch_filter_unittest.cc',
1371 'ftp/ftp_auth_cache_unittest.cc', 1374 'ftp/ftp_auth_cache_unittest.cc',
1372 'ftp/ftp_ctrl_response_buffer_unittest.cc', 1375 'ftp/ftp_ctrl_response_buffer_unittest.cc',
1373 'ftp/ftp_directory_listing_parser_ls_unittest.cc', 1376 'ftp/ftp_directory_listing_parser_ls_unittest.cc',
1374 'ftp/ftp_directory_listing_parser_netware_unittest.cc', 1377 'ftp/ftp_directory_listing_parser_netware_unittest.cc',
1375 'ftp/ftp_directory_listing_parser_os2_unittest.cc', 1378 'ftp/ftp_directory_listing_parser_os2_unittest.cc',
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
1778 'base/mac/url_conversions_unittest.mm', 1781 'base/mac/url_conversions_unittest.mm',
1779 ], 1782 ],
1780 'net_docs_script': 'tools/net_docs/net_docs.py', 1783 'net_docs_script': 'tools/net_docs/net_docs.py',
1781 'net_docs_sources': [ 1784 'net_docs_sources': [
1782 'README.md', 1785 'README.md',
1783 'sdch/README.md', 1786 'sdch/README.md',
1784 ], 1787 ],
1785 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs', 1788 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs',
1786 } 1789 }
1787 } 1790 }
OLDNEW
« net/extras/sqlite/sqlite_persistent_cookie_store.h ('K') | « net/net.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698