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

Side by Side Diff: BUILD.gn

Issue 1001963002: Reland: Add hpack utilities and perftests to net GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | build/config/compiler/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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "//extensions:extensions_unittests", 55 "//extensions:extensions_unittests",
56 "//google_apis/gcm:gcm_unit_tests", 56 "//google_apis/gcm:gcm_unit_tests",
57 "//gpu:gpu_unittests", 57 "//gpu:gpu_unittests",
58 "//ipc:ipc_tests", 58 "//ipc:ipc_tests",
59 "//ipc/mojo:ipc_mojo_unittests", 59 "//ipc/mojo:ipc_mojo_unittests",
60 "//jingle:jingle_unittests", 60 "//jingle:jingle_unittests",
61 "//media:media_unittests", 61 "//media:media_unittests",
62 "//media/cast:cast_unittests", 62 "//media/cast:cast_unittests",
63 "//mojo", 63 "//mojo",
64 "//mojo/common:mojo_common_unittests", 64 "//mojo/common:mojo_common_unittests",
65 "//net:hpack_example_generator",
66 "//net:hpack_fuzz_mutator",
67 "//net:hpack_fuzz_wrapper",
68 "//net:net_perftests",
65 "//net:net_unittests", 69 "//net:net_unittests",
66 "//ppapi:ppapi_unittests", 70 "//ppapi:ppapi_unittests",
67 "//ppapi/examples", # TODO(GYP): What's the GYP equivalent? 71 "//ppapi/examples", # TODO(GYP): What's the GYP equivalent?
68 "//printing:printing_unittests", 72 "//printing:printing_unittests",
69 "//skia:skia_unittests", 73 "//skia:skia_unittests",
70 "//sql:sql_unittests", 74 "//sql:sql_unittests",
71 "//sync:sync_unit_tests", 75 "//sync:sync_unit_tests",
72 "//third_party/WebKit/public:blink_tests", 76 "//third_party/WebKit/public:blink_tests",
73 "//third_party/cacheinvalidation:cacheinvalidation_unittests", 77 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
74 "//third_party/codesighs", 78 "//third_party/codesighs",
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 "//chrome/test:sync_integration_tests", # TODO(GYP) ?? 186 "//chrome/test:sync_integration_tests", # TODO(GYP) ??
183 "//chrome/test:unit_tests", # TODO(GYP) 187 "//chrome/test:unit_tests", # TODO(GYP)
184 188
185 # Chromedriver shouldn't be compiled on Android. 189 # Chromedriver shouldn't be compiled on Android.
186 "//chrome/test/chromedriver:chromedriver_unittests", 190 "//chrome/test/chromedriver:chromedriver_unittests",
187 "//extensions:extensions_browsertests", 191 "//extensions:extensions_browsertests",
188 "//extensions:extensions_unittests", 192 "//extensions:extensions_unittests",
189 "//google_apis/gcm:gcm_unit_tests", 193 "//google_apis/gcm:gcm_unit_tests",
190 "//ipc:ipc_tests", # TODO(GYP) ?? 194 "//ipc:ipc_tests", # TODO(GYP) ??
191 "//jingle:jingle_unittests", # TODO(GYP) ?? 195 "//jingle:jingle_unittests", # TODO(GYP) ??
196 "//net:hpack_example_generator",
197 "//net:hpack_fuzz_mutator",
198 "//net:hpack_fuzz_wrapper",
199 "//net:net_perftests",
192 "//net:net_unittests", 200 "//net:net_unittests",
193 "//ppapi/examples", 201 "//ppapi/examples",
194 "//third_party/pdfium/samples:pdfium_test", 202 "//third_party/pdfium/samples:pdfium_test",
195 "//tools/gn", 203 "//tools/gn",
196 "//tools/gn:gn_unittests", 204 "//tools/gn:gn_unittests",
197 "//ui/app_list:app_list_unittests", 205 "//ui/app_list:app_list_unittests",
198 "//url:url_unittests", 206 "//url:url_unittests",
199 ] 207 ]
200 208
201 if (has_chrome_android_internal) { 209 if (has_chrome_android_internal) {
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 647 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
640 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 648 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
641 "//ui/wm:wm_unittests", # PASSES 2/25/2015 649 "//ui/wm:wm_unittests", # PASSES 2/25/2015
642 "//url:url_unittests", # PASSES 2/25/2015 650 "//url:url_unittests", # PASSES 2/25/2015
643 651
644 # Note: 652 # Note:
645 # (*) Fails but failures match GYP build at time of testing. 653 # (*) Fails but failures match GYP build at time of testing.
646 ] 654 ]
647 } 655 }
648 } 656 }
OLDNEW
« no previous file with comments | « no previous file | build/config/compiler/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698