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

Side by Side Diff: BUILD.gn

Issue 936313002: Add GN For hpack fuzzing utilities and net_perftests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 "//chrome/test:sync_integration_tests", # TODO(GYP) ?? 179 "//chrome/test:sync_integration_tests", # TODO(GYP) ??
176 "//chrome/test:unit_tests", # TODO(GYP) 180 "//chrome/test:unit_tests", # TODO(GYP)
177 181
178 # Chromedriver shouldn't be compiled on Android. 182 # Chromedriver shouldn't be compiled on Android.
179 "//chrome/test/chromedriver:chromedriver_unittests", 183 "//chrome/test/chromedriver:chromedriver_unittests",
180 "//extensions:extensions_browsertests", 184 "//extensions:extensions_browsertests",
181 "//extensions:extensions_unittests", 185 "//extensions:extensions_unittests",
182 "//google_apis/gcm:gcm_unit_tests", 186 "//google_apis/gcm:gcm_unit_tests",
183 "//ipc:ipc_tests", # TODO(GYP) ?? 187 "//ipc:ipc_tests", # TODO(GYP) ??
184 "//jingle:jingle_unittests", # TODO(GYP) ?? 188 "//jingle:jingle_unittests", # TODO(GYP) ??
189 "//net:hpack_example_generator",
190 "//net:hpack_fuzz_mutator",
191 "//net:hpack_fuzz_wrapper",
192 "//net:net_perftests",
185 "//net:net_unittests", 193 "//net:net_unittests",
186 "//ppapi/examples", 194 "//ppapi/examples",
187 "//third_party/pdfium/samples:pdfium_test", 195 "//third_party/pdfium/samples:pdfium_test",
188 "//tools/gn", 196 "//tools/gn",
189 "//tools/gn:gn_unittests", 197 "//tools/gn:gn_unittests",
190 "//ui/app_list:app_list_unittests", 198 "//ui/app_list:app_list_unittests",
191 "//url:url_unittests", 199 "//url:url_unittests",
192 ] 200 ]
193 201
194 if (has_chrome_android_internal) { 202 if (has_chrome_android_internal) {
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 637 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
630 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 638 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
631 "//ui/wm:wm_unittests", # PASSES 2/25/2015 639 "//ui/wm:wm_unittests", # PASSES 2/25/2015
632 "//url:url_unittests", # PASSES 2/25/2015 640 "//url:url_unittests", # PASSES 2/25/2015
633 641
634 # Note: 642 # Note:
635 # (*) Fails but failures match GYP build at time of testing. 643 # (*) Fails but failures match GYP build at time of testing.
636 ] 644 ]
637 } 645 }
638 } 646 }
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