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

Side by Side Diff: net/net.gyp

Issue 2838010: Add a unit test to check KeygenHandler's thread-safety (Closed)
Patch Set: Another revision Created 10 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
762 'websockets/websocket_handshake_handler_unittest.cc', 762 'websockets/websocket_handshake_handler_unittest.cc',
763 'websockets/websocket_handshake_unittest.cc', 763 'websockets/websocket_handshake_unittest.cc',
764 'websockets/websocket_job_unittest.cc', 764 'websockets/websocket_job_unittest.cc',
765 'websockets/websocket_throttle_unittest.cc', 765 'websockets/websocket_throttle_unittest.cc',
766 'websockets/websocket_unittest.cc', 766 'websockets/websocket_unittest.cc',
767 ], 767 ],
768 'conditions': [ 768 'conditions': [
769 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { 769 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', {
770 'dependencies': [ 770 'dependencies': [
771 '../build/linux/system.gyp:gtk', 771 '../build/linux/system.gyp:gtk',
772 '../build/linux/system.gyp:nss',
772 ], 773 ],
773 'sources!': [ 774 'sources!': [
774 'base/sdch_filter_unittest.cc', 775 'base/sdch_filter_unittest.cc',
775 ], 776 ],
776 }, 777 },
777 ], 778 ],
778 ['OS == "linux"', { 779 ['OS == "linux"', {
779 'conditions': [ 780 'conditions': [
780 ['linux_use_tcmalloc==1', { 781 ['linux_use_tcmalloc==1', {
781 'dependencies': [ 782 'dependencies': [
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
1071 ], 1072 ],
1072 }], 1073 }],
1073 ], 1074 ],
1074 } 1075 }
1075 1076
1076 # Local Variables: 1077 # Local Variables:
1077 # tab-width:2 1078 # tab-width:2
1078 # indent-tabs-mode:nil 1079 # indent-tabs-mode:nil
1079 # End: 1080 # End:
1080 # vim: set expandtab tabstop=2 shiftwidth=2: 1081 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698