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

Side by Side Diff: base/base.gyp

Issue 329733002: Disk Based Certificate Cache Implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improved and fixed first test. Created 6 years, 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
11 'base.gypi', 11 'base.gypi',
12 ], 12 ],
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'hello_world',
16 'type': 'executable',
17 'dependencies': [
18 'base',
19 ],
20 'sources': [
21 'cpp101/hello_world.cc',
22 ],
23 },
24 {
Ryan Sleevi 2014/06/11 22:00:08 This looks like an unrelated change from your C++
15 'target_name': 'base', 25 'target_name': 'base',
16 'type': '<(component)', 26 'type': '<(component)',
17 'toolsets': ['host', 'target'], 27 'toolsets': ['host', 'target'],
18 'variables': { 28 'variables': {
19 'base_target': 1, 29 'base_target': 1,
20 'enable_wexit_time_destructors': 1, 30 'enable_wexit_time_destructors': 1,
21 'optimize': 'max', 31 'optimize': 'max',
22 }, 32 },
23 'dependencies': [ 33 'dependencies': [
24 'base_static', 34 'base_static',
(...skipping 1463 matching lines...) Expand 10 before | Expand all | Expand 10 after
1488 'base_unittests.isolate', 1498 'base_unittests.isolate',
1489 ], 1499 ],
1490 'sources': [ 1500 'sources': [
1491 'base_unittests.isolate', 1501 'base_unittests.isolate',
1492 ], 1502 ],
1493 }, 1503 },
1494 ], 1504 ],
1495 }], 1505 }],
1496 ], 1506 ],
1497 } 1507 }
OLDNEW
« no previous file with comments | « no previous file | net/cert_cache/disk_based_cert_cache.h » ('j') | net/cert_cache/disk_based_cert_cache.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698