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

Side by Side Diff: net/net.gypi

Issue 1287893005: Reland: Make separate net and url GN targets with and without ICU (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo Created 5 years, 4 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 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 1849 matching lines...) Expand 10 before | Expand all | Expand 10 after
1860 'tools/quic/test_tools/simple_client.cc', 1860 'tools/quic/test_tools/simple_client.cc',
1861 'tools/quic/test_tools/simple_client.h', 1861 'tools/quic/test_tools/simple_client.h',
1862 ], 1862 ],
1863 'net_base_mac_ios_sources': [ 1863 'net_base_mac_ios_sources': [
1864 'base/mac/url_conversions.h', 1864 'base/mac/url_conversions.h',
1865 'base/mac/url_conversions.mm', 1865 'base/mac/url_conversions.mm',
1866 ], 1866 ],
1867 'net_base_test_mac_ios_sources': [ 1867 'net_base_test_mac_ios_sources': [
1868 'base/mac/url_conversions_unittest.mm', 1868 'base/mac/url_conversions_unittest.mm',
1869 ], 1869 ],
1870 'net_file_support_sources': [
brettw 2015/08/24 20:51:37 If you want to do this, remove the corresponding f
xunjieli 2015/08/26 13:58:10 Done.
1871 "base/directory_lister.cc",
1872 "base/directory_lister.h",
1873 "url_request/file_protocol_handler.cc",
1874 "url_request/file_protocol_handler.h",
1875 "url_request/url_request_file_dir_job.cc",
1876 "url_request/url_request_file_dir_job.h",
1877 "url_request/url_request_file_job.cc",
1878 "url_request/url_request_file_job.h",
1879 ],
1880 'net_ftp_support_sources': [
1881 "ftp/ftp_auth_cache.cc",
1882 "ftp/ftp_auth_cache.h",
1883 "ftp/ftp_ctrl_response_buffer.cc",
1884 "ftp/ftp_ctrl_response_buffer.h",
1885 "ftp/ftp_directory_listing_parser.cc",
1886 "ftp/ftp_directory_listing_parser.h",
1887 "ftp/ftp_directory_listing_parser_ls.cc",
1888 "ftp/ftp_directory_listing_parser_ls.h",
1889 "ftp/ftp_directory_listing_parser_netware.cc",
1890 "ftp/ftp_directory_listing_parser_netware.h",
1891 "ftp/ftp_directory_listing_parser_os2.cc",
1892 "ftp/ftp_directory_listing_parser_os2.h",
1893 "ftp/ftp_directory_listing_parser_vms.cc",
1894 "ftp/ftp_directory_listing_parser_vms.h",
1895 "ftp/ftp_directory_listing_parser_windows.cc",
1896 "ftp/ftp_directory_listing_parser_windows.h",
1897 "ftp/ftp_network_layer.cc",
1898 "ftp/ftp_network_layer.h",
1899 "ftp/ftp_network_session.cc",
1900 "ftp/ftp_network_session.h",
1901 "ftp/ftp_network_transaction.cc",
1902 "ftp/ftp_network_transaction.h",
1903 "ftp/ftp_request_info.h",
1904 "ftp/ftp_response_info.cc",
1905 "ftp/ftp_response_info.h",
1906 "ftp/ftp_server_type_histograms.cc",
1907 "ftp/ftp_server_type_histograms.h",
1908 "ftp/ftp_transaction.h",
1909 "ftp/ftp_transaction_factory.h",
1910 "ftp/ftp_util.cc",
1911 "ftp/ftp_util.h",
1912 "url_request/ftp_protocol_handler.cc",
1913 "url_request/ftp_protocol_handler.h",
1914 "url_request/url_request_ftp_job.cc",
1915 "url_request/url_request_ftp_job.h",
1916 ],
1917 'net_websockets_sources': [
1918 "websockets/websocket_basic_handshake_stream.cc",
1919 "websockets/websocket_basic_handshake_stream.h",
1920 "websockets/websocket_basic_stream.cc",
1921 "websockets/websocket_basic_stream.h",
1922 "websockets/websocket_channel.cc",
1923 "websockets/websocket_channel.h",
1924 "websockets/websocket_deflate_predictor.h",
1925 "websockets/websocket_deflate_predictor_impl.cc",
1926 "websockets/websocket_deflate_predictor_impl.h",
1927 "websockets/websocket_deflate_stream.cc",
1928 "websockets/websocket_deflate_stream.h",
1929 "websockets/websocket_deflater.cc",
1930 "websockets/websocket_deflater.h",
1931 "websockets/websocket_errors.cc",
1932 "websockets/websocket_errors.h",
1933 "websockets/websocket_extension.cc",
1934 "websockets/websocket_extension.h",
1935 "websockets/websocket_extension_parser.cc",
1936 "websockets/websocket_extension_parser.h",
1937 "websockets/websocket_frame.cc",
1938 "websockets/websocket_frame.h",
1939 "websockets/websocket_frame_parser.cc",
1940 "websockets/websocket_frame_parser.h",
1941 "websockets/websocket_handshake_challenge.cc",
1942 "websockets/websocket_handshake_challenge.h",
1943 "websockets/websocket_handshake_constants.cc",
1944 "websockets/websocket_handshake_constants.h",
1945 "websockets/websocket_handshake_request_info.cc",
1946 "websockets/websocket_handshake_request_info.h",
1947 "websockets/websocket_handshake_response_info.cc",
1948 "websockets/websocket_handshake_response_info.h",
1949 "websockets/websocket_handshake_stream_base.h",
1950 "websockets/websocket_handshake_stream_create_helper.cc",
1951 "websockets/websocket_handshake_stream_create_helper.h",
1952 "websockets/websocket_inflater.cc",
1953 "websockets/websocket_inflater.h",
1954 "websockets/websocket_mux.h",
1955 "websockets/websocket_stream.cc",
1956 "websockets/websocket_stream.h",
1957 ],
1870 'net_docs_script': 'tools/net_docs/net_docs.py', 1958 'net_docs_script': 'tools/net_docs/net_docs.py',
1871 'net_docs_sources': [ 1959 'net_docs_sources': [
1872 'README.md', 1960 'README.md',
1873 'docs/bug-triage.md', 1961 'docs/bug-triage.md',
1874 'docs/bug-triage-labels.md', 1962 'docs/bug-triage-labels.md',
1875 'docs/bug-triage-suggested-workflow.md', 1963 'docs/bug-triage-suggested-workflow.md',
1876 'docs/life-of-a-url-request.md', 1964 'docs/life-of-a-url-request.md',
1877 'sdch/README.md', 1965 'sdch/README.md',
1878 ], 1966 ],
1879 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs', 1967 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs',
1880 } 1968 }
1881 } 1969 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698