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

Side by Side Diff: BUILD.gn

Issue 965633002: Add remoting and PPAPI tests to GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge fix 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/linux/gtk/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 "//google_apis/gcm:gcm_unit_tests", 55 "//google_apis/gcm:gcm_unit_tests",
56 "//gpu:gpu_unittests", 56 "//gpu:gpu_unittests",
57 "//ipc:ipc_tests", 57 "//ipc:ipc_tests",
58 "//ipc/mojo:ipc_mojo_unittests", 58 "//ipc/mojo:ipc_mojo_unittests",
59 "//jingle:jingle_unittests", 59 "//jingle:jingle_unittests",
60 "//media:media_unittests", 60 "//media:media_unittests",
61 "//media/cast:cast_unittests", 61 "//media/cast:cast_unittests",
62 "//mojo", 62 "//mojo",
63 "//mojo/common:mojo_common_unittests", 63 "//mojo/common:mojo_common_unittests",
64 "//net:net_unittests", 64 "//net:net_unittests",
65 "//ppapi:ppapi_unittests",
65 "//ppapi/examples", # TODO(GYP): What's the GYP equivalent? 66 "//ppapi/examples", # TODO(GYP): What's the GYP equivalent?
66 "//printing:printing_unittests", 67 "//printing:printing_unittests",
68 "//remoting:remoting_unittests",
67 "//skia:skia_unittests", 69 "//skia:skia_unittests",
68 "//sql:sql_unittests", 70 "//sql:sql_unittests",
69 "//sync:sync_unit_tests", 71 "//sync:sync_unit_tests",
70 "//third_party/WebKit/public:blink_tests", 72 "//third_party/WebKit/public:blink_tests",
71 "//third_party/cacheinvalidation:cacheinvalidation_unittests", 73 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
72 "//third_party/codesighs", 74 "//third_party/codesighs",
73 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", 75 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
74 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", 76 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
75 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", 77 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
76 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", 78 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 # This group corresponds to the list of tests run on the waterfall for 269 # This group corresponds to the list of tests run on the waterfall for
268 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's 270 # desktop Linux GYP builds from testing/buildbot/chromium.linux.json. It's
269 # here to help track GYP -> GN conversion progress. 271 # here to help track GYP -> GN conversion progress.
270 group("linux_default_tests") { 272 group("linux_default_tests") {
271 testonly = true 273 testonly = true
272 deps = [ 274 deps = [
273 # chromedriver_unittests TODO(GYP) 275 # chromedriver_unittests TODO(GYP)
274 # components_browsertests TODO(GYP) 276 # components_browsertests TODO(GYP)
275 # device_unittests TODO(GYP) 277 # device_unittests TODO(GYP)
276 # nacl_loader_unittests TODO(GYP) 278 # nacl_loader_unittests TODO(GYP)
277 # ppapi_unittests TODO(GYP)
278 # remoting_unittests TODO(GYP)
279 279
280 "//base:base_unittests", # PASSES (*) 2/25/2015 280 "//base:base_unittests", # PASSES (*) 2/25/2015
281 "//cc:cc_unittests", # PASSES 2/25/2015 281 "//cc:cc_unittests", # PASSES 2/25/2015
282 "//chrome/test:browser_tests", 282 "//chrome/test:browser_tests",
283 "//chrome/test:interactive_ui_tests", 283 "//chrome/test:interactive_ui_tests",
284 "//chrome/test:sync_integration_tests", # TODO(GYP) multiple crashes. 284 "//chrome/test:sync_integration_tests", # TODO(GYP) multiple crashes.
285 "//chrome/test:unit_tests", # PASSES 2/25/2015 285 "//chrome/test:unit_tests", # PASSES 2/25/2015
286 "//components:components_unittests", # TODO(GYP) multiple crashes. 286 "//components:components_unittests", # TODO(GYP) multiple crashes.
287 "//content/test:content_browsertests", 287 "//content/test:content_browsertests",
288 "//content/test:content_unittests", # PASSES 2/25/2015 288 "//content/test:content_unittests", # PASSES 2/25/2015
289 "//crypto:crypto_unittests", # PASSES 2/25/2015 289 "//crypto:crypto_unittests", # PASSES 2/25/2015
290 "//dbus:dbus_unittests", # PASSES 2/25/2015 290 "//dbus:dbus_unittests", # PASSES 2/25/2015
291 "//extensions:extensions_browsertests", # PASSES 2/25/2015 291 "//extensions:extensions_browsertests", # PASSES 2/25/2015
292 "//extensions:extensions_unittests", # PASSES 2/25/2015 292 "//extensions:extensions_unittests", # PASSES 2/25/2015
293 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015 293 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015
294 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015 294 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015
295 "//google_apis:google_apis_unittests", # PASSES 2/25/2015 295 "//google_apis:google_apis_unittests", # PASSES 2/25/2015
296 "//gpu:gpu_unittests", # PASSES 2/25/2015 296 "//gpu:gpu_unittests", # PASSES 2/25/2015
297 "//ipc:ipc_tests", # PASSES 2/25/2015 297 "//ipc:ipc_tests", # PASSES 2/25/2015
298 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015 298 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015
299 "//jingle:jingle_unittests", # PASSES 2/25/2015 299 "//jingle:jingle_unittests", # PASSES 2/25/2015
300 "//media/cast:cast_unittests", # PASSES 2/25/2015 300 "//media/cast:cast_unittests", # PASSES 2/25/2015
301 "//media:media_unittests", # TODO(GYP) MidiManagerTest fails. 301 "//media:media_unittests", # TODO(GYP) MidiManagerTest fails.
302 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015 302 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015
303 "//net:net_unittests", # PASSES 2/25/2015 303 "//net:net_unittests", # PASSES 2/25/2015
304 "//ppapi:ppapi_unittests", # PASSES 2/26/2015
304 "//printing:printing_unittests", # PASSES 2/25/2015 305 "//printing:printing_unittests", # PASSES 2/25/2015
306 "//remoting:remoting_unittests", # Some crashes.
305 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015 307 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015
306 "//skia:skia_unittests", # PASSES 2/25/2015 308 "//skia:skia_unittests", # PASSES 2/25/2015
307 "//sql:sql_unittests", # PASSES 2/25/2015 309 "//sql:sql_unittests", # PASSES 2/25/2015
308 "//sync:sync_unit_tests", # PASSES 2/25/2015 310 "//sync:sync_unit_tests", # PASSES 2/25/2015
309 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2 /25/2015 311 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2 /25/2015
310 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES 2/25/2015 312 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES 2/25/2015
311 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # PASSES 2/25/2015 313 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", # PASSES 2/25/2015
312 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 2/25/2015 314 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", # PASSES 2/25/2015
313 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PA SSES 2/25/2015 315 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", # PA SSES 2/25/2015
314 "//ui/accessibility:accessibility_unittests", # PASSES 2/25/2015 316 "//ui/accessibility:accessibility_unittests", # PASSES 2/25/2015
315 "//ui/app_list:app_list_unittests", # PASSES 2/25/2015 317 "//ui/app_list:app_list_unittests", # PASSES 2/25/2015
316 "//ui/aura:aura_unittests", # PASSES 2/25/2015 318 "//ui/aura:aura_unittests", # PASSES 2/25/2015
317 "//ui/base:ui_base_unittests", # TODO(GYP) ResourceBundleTest.* fails. 319 "//ui/base:ui_base_unittests", # TODO(GYP) ResourceBundleTest.* fails.
318 "//ui/compositor:compositor_unittests", # PASSES 2/25/2015 320 "//ui/compositor:compositor_unittests", # PASSES 2/25/2015
319 "//ui/display:display_unittests", # PASSES 2/25/2015 321 "//ui/display:display_unittests", # PASSES 2/25/2015
320 "//ui/events:events_unittests", # PASSES 2/25/2015 322 "//ui/events:events_unittests", # PASSES 2/25/2015
321 "//ui/gfx:gfx_unittests", # PASSES 2/25/2015 323 "//ui/gfx:gfx_unittests", # PASSES 2/25/2015
322 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 324 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
323 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 325 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
324 "//ui/wm:wm_unittests", # PASSES 2/25/2015 326 "//ui/wm:wm_unittests", # PASSES 2/25/2015
325 "//url:url_unittests", # PASSES 2/25/2015 327 "//url:url_unittests", # PASSES 2/25/2015
326 328
327 # Note: 329 # Note:
328 # (*) Fails but failures match GYP build at time of testing. 330 # (*) Fails but failures match GYP build at time of testing.
329 ] 331 ]
330 } 332 }
331 } 333 }
OLDNEW
« no previous file with comments | « no previous file | build/config/linux/gtk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698