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

Side by Side Diff: BUILD.gn

Issue 1706833003: Move various Shell tests into a subdir. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@conn
Patch Set: . Created 4 years, 10 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/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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 if (is_win || is_linux) { 596 if (is_win || is_linux) {
597 deps += [ 597 deps += [
598 "//components/filesystem:apptests", 598 "//components/filesystem:apptests",
599 "//components/leveldb:apptests", 599 "//components/leveldb:apptests",
600 "//components/mus/ws:tests", 600 "//components/mus/ws:tests",
601 "//components/resource_provider:apptests", 601 "//components/resource_provider:apptests",
602 "//components/resource_provider:resource_provider_unittests", 602 "//components/resource_provider:resource_provider_unittests",
603 "//mash/wm:tests", 603 "//mash/wm:tests",
604 "//media/mojo/services:tests", 604 "//media/mojo/services:tests",
605 "//mojo/services/network:apptests", 605 "//mojo/services/network:apptests",
606 "//mojo/shell:apptests", 606 "//mojo/shell/tests:apptests",
607 "//ui/views/mus:tests", 607 "//ui/views/mus:tests",
608 ] 608 ]
609 } 609 }
610 610
611 if (is_android) { 611 if (is_android) {
612 deps += [ "//mojo/shell/standalone:mojo_shell_standalone_apptests_apk" ] 612 deps += [ "//mojo/shell/standalone:mojo_shell_standalone_apptests_apk" ]
613 } 613 }
614 } 614 }
615 615
616 group("gn_only") { 616 group("gn_only") {
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 ] 877 ]
878 878
879 if (target_cpu == "x86") { 879 if (target_cpu == "x86") {
880 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] 880 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
881 } 881 }
882 } else { 882 } else {
883 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 883 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
884 } 884 }
885 } 885 }
886 } 886 }
OLDNEW
« no previous file with comments | « no previous file | mojo/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698