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

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: Continue cleanup. 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/services/html_viewer/BUILD.gn » ('j') | mojo/services/html_viewer/BUILD.gn » ('J')
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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python", 569 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python",
570 "//third_party/mojo/src/mojo/public/python:packaged_application", 570 "//third_party/mojo/src/mojo/public/python:packaged_application",
571 "//third_party/mojo/src/mojo/public/python:packaged_bindings", 571 "//third_party/mojo/src/mojo/public/python:packaged_bindings",
572 "//third_party/mojo/src/mojo/public/cpp/application:test_support_standalon e", 572 "//third_party/mojo/src/mojo/public/cpp/application:test_support_standalon e",
573 "//third_party/mojo_services/src/accessibility/public/interfaces:interface s_dart", 573 "//third_party/mojo_services/src/accessibility/public/interfaces:interface s_dart",
574 "//third_party/mojo_services/src/accessibility/public/interfaces:interface s_python", 574 "//third_party/mojo_services/src/accessibility/public/interfaces:interface s_python",
575 "//third_party/mojo_services/src/window_manager/public/interfaces:interfac es_dart", 575 "//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", 576 "//third_party/mojo_services/src/window_manager/public/interfaces:interfac es_python",
577 ] 577 ]
578 578
579 if (!is_debug) { 579 #if (!is_debug) {
sky 2015/04/02 16:56:17 Wow, this is weird. I wonder why we had these two
580 deps += [ 580 deps += [
581 "//mojo/services/html_viewer:tests", 581 "//mojo/services/html_viewer:tests",
582 "//mojo/services/html_viewer:apptests",
582 "//mojo/services/network:apptests", 583 "//mojo/services/network:apptests",
583 ] 584 ]
584 } 585 #}
585 } 586 }
586 } 587 }
587 588
588 group("gn_visibility") { 589 group("gn_visibility") {
589 deps = [ 590 deps = [
590 # "//build/config/sanitizers:options_sources", 591 # "//build/config/sanitizers:options_sources",
591 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility? 592 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
592 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility? 593 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
593 # "//ui/resources:repack_ui_test_mac_locale_pack", 594 # "//ui/resources:repack_ui_test_mac_locale_pack",
594 # "//v8:v8_snapshot", # TODO(GYP): visibility? 595 # "//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 656 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015
656 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 657 "//ui/views:views_unittests", # PASSES (*) 2/25/2015
657 "//ui/wm:wm_unittests", # PASSES 2/25/2015 658 "//ui/wm:wm_unittests", # PASSES 2/25/2015
658 "//url:url_unittests", # PASSES 2/25/2015 659 "//url:url_unittests", # PASSES 2/25/2015
659 660
660 # Note: 661 # Note:
661 # (*) Fails but failures match GYP build at time of testing. 662 # (*) Fails but failures match GYP build at time of testing.
662 ] 663 ]
663 } 664 }
664 } 665 }
OLDNEW
« no previous file with comments | « no previous file | mojo/services/html_viewer/BUILD.gn » ('j') | mojo/services/html_viewer/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698