| OLD | NEW |
| 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 1274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1285 'url_request/url_request_test_job.h', | 1285 'url_request/url_request_test_job.h', |
| 1286 'url_request/url_request_throttler_entry.cc', | 1286 'url_request/url_request_throttler_entry.cc', |
| 1287 'url_request/url_request_throttler_entry.h', | 1287 'url_request/url_request_throttler_entry.h', |
| 1288 'url_request/url_request_throttler_entry_interface.h', | 1288 'url_request/url_request_throttler_entry_interface.h', |
| 1289 'url_request/url_request_throttler_manager.cc', | 1289 'url_request/url_request_throttler_manager.cc', |
| 1290 'url_request/url_request_throttler_manager.h', | 1290 'url_request/url_request_throttler_manager.h', |
| 1291 'url_request/view_cache_helper.cc', | 1291 'url_request/view_cache_helper.cc', |
| 1292 'url_request/view_cache_helper.h', | 1292 'url_request/view_cache_helper.h', |
| 1293 'url_request/websocket_handshake_userdata_key.cc', | 1293 'url_request/websocket_handshake_userdata_key.cc', |
| 1294 'url_request/websocket_handshake_userdata_key.h', | 1294 'url_request/websocket_handshake_userdata_key.h', |
| 1295 |
| 1296 # WebSockets headers are included net/http files. Since net/http can be |
| 1297 # built without linking net/websockets code, the uses of the websockets |
| 1298 # headers from url_request are carefully written not to introduce link- |
| 1299 # time dependencies. |
| 1300 # |
| 1301 # To make "gn check" validate the header usage properly, these are the |
| 1302 # websocket headers needed by the shared net code, which are duplicated |
| 1303 # unconditionally here from the conditional websockets list below. |
| 1304 'websockets/websocket_handshake_stream_base.h', |
| 1305 'websockets/websocket_stream.h', |
| 1306 'websockets/websocket_handshake_request_info.h', |
| 1307 'websockets/websocket_handshake_response_info.h', |
| 1295 ], | 1308 ], |
| 1296 'net_extras_sources': [ | 1309 'net_extras_sources': [ |
| 1297 'extras/sqlite/cookie_crypto_delegate.h', | 1310 'extras/sqlite/cookie_crypto_delegate.h', |
| 1298 'extras/sqlite/sqlite_channel_id_store.cc', | 1311 'extras/sqlite/sqlite_channel_id_store.cc', |
| 1299 'extras/sqlite/sqlite_channel_id_store.h', | 1312 'extras/sqlite/sqlite_channel_id_store.h', |
| 1300 'extras/sqlite/sqlite_persistent_cookie_store.cc', | 1313 'extras/sqlite/sqlite_persistent_cookie_store.cc', |
| 1301 'extras/sqlite/sqlite_persistent_cookie_store.h', | 1314 'extras/sqlite/sqlite_persistent_cookie_store.h', |
| 1302 ], | 1315 ], |
| 1303 'net_test_sources': [ | 1316 'net_test_sources': [ |
| 1304 'android/dummy_spnego_authenticator.cc', | 1317 'android/dummy_spnego_authenticator.cc', |
| (...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1991 'docs/bug-triage-labels.md', | 2004 'docs/bug-triage-labels.md', |
| 1992 'docs/bug-triage-suggested-workflow.md', | 2005 'docs/bug-triage-suggested-workflow.md', |
| 1993 'docs/code-patterns.md', | 2006 'docs/code-patterns.md', |
| 1994 'docs/crash-course-in-net-internals.md', | 2007 'docs/crash-course-in-net-internals.md', |
| 1995 'docs/life-of-a-url-request.md', | 2008 'docs/life-of-a-url-request.md', |
| 1996 'sdch/README.md', | 2009 'sdch/README.md', |
| 1997 ], | 2010 ], |
| 1998 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs', | 2011 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs', |
| 1999 } | 2012 } |
| 2000 } | 2013 } |
| OLD | NEW |