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

Side by Side Diff: net/net.gyp

Issue 14263005: Refactor our SimpleIndex file format and serialization to use Pickle instead of the previously bugg… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Philippe's comments Created 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 'disk_cache/stats_histogram.h', 371 'disk_cache/stats_histogram.h',
372 'disk_cache/storage_block-inl.h', 372 'disk_cache/storage_block-inl.h',
373 'disk_cache/storage_block.h', 373 'disk_cache/storage_block.h',
374 'disk_cache/stress_support.h', 374 'disk_cache/stress_support.h',
375 'disk_cache/trace.cc', 375 'disk_cache/trace.cc',
376 'disk_cache/trace.h', 376 'disk_cache/trace.h',
377 'disk_cache/tracing_cache_backend.cc', 377 'disk_cache/tracing_cache_backend.cc',
378 'disk_cache/tracing_cache_backend.h', 378 'disk_cache/tracing_cache_backend.h',
379 'disk_cache/simple/simple_backend_impl.cc', 379 'disk_cache/simple/simple_backend_impl.cc',
380 'disk_cache/simple/simple_backend_impl.h', 380 'disk_cache/simple/simple_backend_impl.h',
381 'disk_cache/simple/simple_disk_format.h',
gavinp 2013/04/15 15:40:54 Ordering.
felipeg 2013/04/15 15:56:09 Done.
381 'disk_cache/simple/simple_disk_format.cc', 382 'disk_cache/simple/simple_disk_format.cc',
382 'disk_cache/simple/simple_disk_format.h',
383 'disk_cache/simple/simple_entry_impl.cc', 383 'disk_cache/simple/simple_entry_impl.cc',
384 'disk_cache/simple/simple_entry_impl.h', 384 'disk_cache/simple/simple_entry_impl.h',
385 'disk_cache/simple/simple_index.cc', 385 'disk_cache/simple/simple_index.cc',
386 'disk_cache/simple/simple_index.h', 386 'disk_cache/simple/simple_index.h',
387 'disk_cache/simple/simple_index_file.cc',
388 'disk_cache/simple/simple_index_file.h',
389 'disk_cache/simple/simple_index_util.cc',
390 'disk_cache/simple/simple_index_util.h',
387 'disk_cache/simple/simple_synchronous_entry.cc', 391 'disk_cache/simple/simple_synchronous_entry.cc',
388 'disk_cache/simple/simple_synchronous_entry.h', 392 'disk_cache/simple/simple_synchronous_entry.h',
389 'disk_cache/flash/flash_entry_impl.cc', 393 'disk_cache/flash/flash_entry_impl.cc',
390 'disk_cache/flash/flash_entry_impl.h', 394 'disk_cache/flash/flash_entry_impl.h',
391 'disk_cache/flash/format.h', 395 'disk_cache/flash/format.h',
392 'disk_cache/flash/internal_entry.cc', 396 'disk_cache/flash/internal_entry.cc',
393 'disk_cache/flash/internal_entry.h', 397 'disk_cache/flash/internal_entry.h',
394 'disk_cache/flash/log_store.cc', 398 'disk_cache/flash/log_store.cc',
395 'disk_cache/flash/log_store.h', 399 'disk_cache/flash/log_store.h',
396 'disk_cache/flash/log_store_entry.cc', 400 'disk_cache/flash/log_store_entry.cc',
(...skipping 2394 matching lines...) Expand 10 before | Expand all | Expand 10 after
2791 '--result', '<@(_outputs)', 2795 '--result', '<@(_outputs)',
2792 '--isolate', 'net_unittests.isolate', 2796 '--isolate', 'net_unittests.isolate',
2793 ], 2797 ],
2794 }, 2798 },
2795 ], 2799 ],
2796 }, 2800 },
2797 ], 2801 ],
2798 }], 2802 }],
2799 ], 2803 ],
2800 } 2804 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698