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

Side by Side Diff: net/net.gyp

Issue 3366026: Add python_utils to append to python path (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 3 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
« no previous file with comments | « no previous file | net/test/python_utils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 828 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 'socket_stream/socket_stream_metrics_unittest.cc', 839 'socket_stream/socket_stream_metrics_unittest.cc',
840 'socket_stream/socket_stream_unittest.cc', 840 'socket_stream/socket_stream_unittest.cc',
841 'spdy/spdy_framer_test.cc', 841 'spdy/spdy_framer_test.cc',
842 'spdy/spdy_http_stream_unittest.cc', 842 'spdy/spdy_http_stream_unittest.cc',
843 'spdy/spdy_network_transaction_unittest.cc', 843 'spdy/spdy_network_transaction_unittest.cc',
844 'spdy/spdy_protocol_test.cc', 844 'spdy/spdy_protocol_test.cc',
845 'spdy/spdy_session_unittest.cc', 845 'spdy/spdy_session_unittest.cc',
846 'spdy/spdy_stream_unittest.cc', 846 'spdy/spdy_stream_unittest.cc',
847 'spdy/spdy_test_util.cc', 847 'spdy/spdy_test_util.cc',
848 'spdy/spdy_test_util.h', 848 'spdy/spdy_test_util.h',
849 'test/python_utils_unittest.cc',
849 'tools/dump_cache/url_to_filename_encoder.cc', 850 'tools/dump_cache/url_to_filename_encoder.cc',
850 'tools/dump_cache/url_to_filename_encoder.h', 851 'tools/dump_cache/url_to_filename_encoder.h',
851 'tools/dump_cache/url_to_filename_encoder_unittest.cc', 852 'tools/dump_cache/url_to_filename_encoder_unittest.cc',
852 'tools/dump_cache/url_utilities.h', 853 'tools/dump_cache/url_utilities.h',
853 'tools/dump_cache/url_utilities.cc', 854 'tools/dump_cache/url_utilities.cc',
854 'tools/dump_cache/url_utilities_unittest.cc', 855 'tools/dump_cache/url_utilities_unittest.cc',
855 'url_request/url_request_job_tracker_unittest.cc', 856 'url_request/url_request_job_tracker_unittest.cc',
856 'url_request/url_request_unittest.cc', 857 'url_request/url_request_unittest.cc',
857 'url_request/url_request_unittest.h', 858 'url_request/url_request_unittest.h',
858 'url_request/view_cache_helper_unittest.cc', 859 'url_request/view_cache_helper_unittest.cc',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 ], 999 ],
999 'sources': [ 1000 'sources': [
1000 'base/cert_test_util.cc', 1001 'base/cert_test_util.cc',
1001 'base/cert_test_util.h', 1002 'base/cert_test_util.h',
1002 'disk_cache/disk_cache_test_util.cc', 1003 'disk_cache/disk_cache_test_util.cc',
1003 'disk_cache/disk_cache_test_util.h', 1004 'disk_cache/disk_cache_test_util.h',
1004 'proxy/proxy_config_service_common_unittest.cc', 1005 'proxy/proxy_config_service_common_unittest.cc',
1005 'proxy/proxy_config_service_common_unittest.h', 1006 'proxy/proxy_config_service_common_unittest.h',
1006 'socket/socket_test_util.cc', 1007 'socket/socket_test_util.cc',
1007 'socket/socket_test_util.h', 1008 'socket/socket_test_util.h',
1009 'test/python_utils.cc',
1010 'test/python_utils.h',
1008 'test/test_server.cc', 1011 'test/test_server.cc',
1009 'test/test_server_posix.cc', 1012 'test/test_server_posix.cc',
1010 'test/test_server_win.cc', 1013 'test/test_server_win.cc',
1011 'test/test_server.h', 1014 'test/test_server.h',
1012 ], 1015 ],
1013 'conditions': [ 1016 'conditions': [
1014 ['inside_chromium_build==1', { 1017 ['inside_chromium_build==1', {
1015 'dependencies': [ 1018 'dependencies': [
1016 '../chrome/browser/sync/protocol/sync_proto.gyp:sync_proto', 1019 '../chrome/browser/sync/protocol/sync_proto.gyp:sync_proto',
1017 '../third_party/protobuf2/protobuf.gyp:py_proto', 1020 '../third_party/protobuf2/protobuf.gyp:py_proto',
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1234 ], 1237 ],
1235 }], 1238 }],
1236 ], 1239 ],
1237 } 1240 }
1238 1241
1239 # Local Variables: 1242 # Local Variables:
1240 # tab-width:2 1243 # tab-width:2
1241 # indent-tabs-mode:nil 1244 # indent-tabs-mode:nil
1242 # End: 1245 # End:
1243 # vim: set expandtab tabstop=2 shiftwidth=2: 1246 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | net/test/python_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698