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

Side by Side Diff: BUILD.gn

Issue 2716393002: Deprecate hpack_table_size flag, remove dead code. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | net/BUILD.gn » ('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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 "//chrome/test:sync_integration_tests", 228 "//chrome/test:sync_integration_tests",
229 "//chrome/test/chromedriver:chromedriver_unittests", 229 "//chrome/test/chromedriver:chromedriver_unittests",
230 "//components/sync/tools:sync_client", 230 "//components/sync/tools:sync_client",
231 "//components/sync/tools:sync_listen_notifications", 231 "//components/sync/tools:sync_listen_notifications",
232 "//extensions:extensions_browsertests", 232 "//extensions:extensions_browsertests",
233 "//extensions:extensions_unittests", 233 "//extensions:extensions_unittests",
234 "//gpu/gles2_conform_support:gles2_conform_test", 234 "//gpu/gles2_conform_support:gles2_conform_test",
235 "//gpu/khronos_glcts_support:khronos_glcts_test", 235 "//gpu/khronos_glcts_support:khronos_glcts_test",
236 "//jingle:jingle_unittests", 236 "//jingle:jingle_unittests",
237 "//net:hpack_example_generator", 237 "//net:hpack_example_generator",
238 "//net:hpack_fuzz_mutator",
239 "//net:hpack_fuzz_wrapper",
240 "//ppapi:ppapi_unittests", 238 "//ppapi:ppapi_unittests",
241 "//ppapi/examples/2d", 239 "//ppapi/examples/2d",
242 "//ppapi/examples/audio", 240 "//ppapi/examples/audio",
243 "//ppapi/examples/audio_input", 241 "//ppapi/examples/audio_input",
244 "//ppapi/examples/compositor", 242 "//ppapi/examples/compositor",
245 "//ppapi/examples/crxfs", 243 "//ppapi/examples/crxfs",
246 "//ppapi/examples/enumerate_devices", 244 "//ppapi/examples/enumerate_devices",
247 "//ppapi/examples/file_chooser", 245 "//ppapi/examples/file_chooser",
248 "//ppapi/examples/flash_topmost", 246 "//ppapi/examples/flash_topmost",
249 "//ppapi/examples/font", 247 "//ppapi/examples/font",
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 testonly = true 1035 testonly = true
1038 1036
1039 deps = [ 1037 deps = [
1040 "//chrome:chrome", 1038 "//chrome:chrome",
1041 "//content/shell:content_shell", 1039 "//content/shell:content_shell",
1042 "//v8:d8", 1040 "//v8:d8",
1043 ] 1041 ]
1044 if (!is_win) { 1042 if (!is_win) {
1045 deps += [ 1043 deps += [
1046 "//net:dns_fuzz_stub", 1044 "//net:dns_fuzz_stub",
1047 "//net:hpack_fuzz_wrapper",
1048 "//skia:filter_fuzz_stub", 1045 "//skia:filter_fuzz_stub",
1049 ] 1046 ]
1050 } 1047 }
1051 if (enable_ipc_fuzzer && !is_component_build) { 1048 if (enable_ipc_fuzzer && !is_component_build) {
1052 deps += [ "//tools/ipc_fuzzer:ipc_fuzzer_all" ] 1049 deps += [ "//tools/ipc_fuzzer:ipc_fuzzer_all" ]
1053 } 1050 }
1054 if (!is_chromeos) { 1051 if (!is_chromeos) {
1055 deps += [ 1052 deps += [
1056 "//third_party/pdfium/samples:pdfium_test", 1053 "//third_party/pdfium/samples:pdfium_test",
1057 "//v8:v8_shell($v8_snapshot_toolchain)", 1054 "//v8:v8_shell($v8_snapshot_toolchain)",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 assert(target_name != "") # Mark as used. 1108 assert(target_name != "") # Mark as used.
1112 sources = invoker.actual_sources 1109 sources = invoker.actual_sources
1113 assert( 1110 assert(
1114 sources == invoker.actual_sources, 1111 sources == invoker.actual_sources,
1115 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") 1112 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283")
1116 } 1113 }
1117 1114
1118 assert_valid_out_dir("_unused") { 1115 assert_valid_out_dir("_unused") {
1119 actual_sources = [ "$root_build_dir/foo" ] 1116 actual_sources = [ "$root_build_dir/foo" ]
1120 } 1117 }
OLDNEW
« no previous file with comments | « no previous file | net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698