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

Side by Side Diff: BUILD.gn

Issue 1049013004: Add some simple HTMLViewer apptests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use net::SpawnedTestServer instead of mojo:http_server. Created 5 years, 8 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 | mojo/application/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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 "//device/battery:mojo_bindings_dart", 555 "//device/battery:mojo_bindings_dart",
556 "//device/vibration:mojo_bindings_dart", 556 "//device/vibration:mojo_bindings_dart",
557 "//device/vibration:mojo_bindings_python", 557 "//device/vibration:mojo_bindings_python",
558 "//ipc/mojo:ipc_mojo_perftests", 558 "//ipc/mojo:ipc_mojo_perftests",
559 "//ipc/mojo:client_channel_dart", 559 "//ipc/mojo:client_channel_dart",
560 "//ipc/mojo:client_channel_python", 560 "//ipc/mojo:client_channel_python",
561 "//media/mojo/interfaces:interfaces_dart", 561 "//media/mojo/interfaces:interfaces_dart",
562 "//media/mojo/interfaces:interfaces_python", 562 "//media/mojo/interfaces:interfaces_python",
563 "//media/mojo/services:cdm_service", 563 "//media/mojo/services:cdm_service",
564 "//media/mojo:tests", 564 "//media/mojo:tests",
565 "//mojo/services/html_viewer:tests",
566 "//mojo/services/html_viewer:apptests",
567 "//mojo/services/network:apptests",
565 "//net/interfaces:interfaces_dart", 568 "//net/interfaces:interfaces_dart",
566 "//net/interfaces:interfaces_python", 569 "//net/interfaces:interfaces_python",
567 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests", 570 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
568 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_dart", 571 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_dart",
569 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python", 572 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python",
570 "//third_party/mojo/src/mojo/public/python:packaged_application", 573 "//third_party/mojo/src/mojo/public/python:packaged_application",
571 "//third_party/mojo/src/mojo/public/python:packaged_bindings", 574 "//third_party/mojo/src/mojo/public/python:packaged_bindings",
572 "//third_party/mojo/src/mojo/public/cpp/application:test_support_standalon e", 575 "//third_party/mojo/src/mojo/public/cpp/application:test_support_standalon e",
573 "//third_party/mojo_services/src/accessibility/public/interfaces:interface s_dart", 576 "//third_party/mojo_services/src/accessibility/public/interfaces:interface s_dart",
574 "//third_party/mojo_services/src/accessibility/public/interfaces:interface s_python", 577 "//third_party/mojo_services/src/accessibility/public/interfaces:interface s_python",
575 "//third_party/mojo_services/src/window_manager/public/interfaces:interfac es_dart", 578 "//third_party/mojo_services/src/window_manager/public/interfaces:interfac es_dart",
576 "//third_party/mojo_services/src/window_manager/public/interfaces:interfac es_python", 579 "//third_party/mojo_services/src/window_manager/public/interfaces:interfac es_python",
577 ] 580 ]
578
579 if (!is_debug) {
580 deps += [
581 "//mojo/services/html_viewer:tests",
582 "//mojo/services/network:apptests",
583 ]
584 }
585 } 581 }
586 } 582 }
587 583
588 group("gn_visibility") { 584 group("gn_visibility") {
589 deps = [ 585 deps = [
590 # "//build/config/sanitizers:options_sources", 586 # "//build/config/sanitizers:options_sources",
591 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility? 587 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
592 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility? 588 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
593 # "//ui/resources:repack_ui_test_mac_locale_pack", 589 # "//ui/resources:repack_ui_test_mac_locale_pack",
594 # "//v8:v8_snapshot", # TODO(GYP): visibility? 590 # "//v8:v8_snapshot", # TODO(GYP): visibility?
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 651 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
656 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 652 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
657 "//ui/wm:wm_unittests", # PASSES 2/25/2015 653 "//ui/wm:wm_unittests", # PASSES 2/25/2015
658 "//url:url_unittests", # PASSES 2/25/2015 654 "//url:url_unittests", # PASSES 2/25/2015
659 655
660 # Note: 656 # Note:
661 # (*) Fails but failures match GYP build at time of testing. 657 # (*) Fails but failures match GYP build at time of testing.
662 ] 658 ]
663 } 659 }
664 } 660 }
OLDNEW
« no previous file with comments | « no previous file | mojo/application/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698