summaryrefslogtreecommitdiffstats
path: root/mojo
diff options
context:
space:
mode:
authormsw <msw@chromium.org>2015-04-16 18:52:52 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-17 01:53:16 +0000
commit69bc247eb15f6ee51521b20494267e6fe03a4762 (patch)
tree6905c52da09ca98ec95331a7e6356c383dec5b6b /mojo
parent19c5c9b47829986c46eeaee7cb9aa08bf1908e57 (diff)
downloadchromium_src-69bc247eb15f6ee51521b20494267e6fe03a4762.zip
chromium_src-69bc247eb15f6ee51521b20494267e6fe03a4762.tar.gz
chromium_src-69bc247eb15f6ee51521b20494267e6fe03a4762.tar.bz2
Revert of Make a mojo:apptests GN meta-target, add apptests. (patchset #3 id:60001 of https://codereview.chromium.org/1050233005/)
Reason for revert: Caused compile failures (many errors, one example below) on Mac GN bot: http://build.chromium.org/p/chromium.mac/builders/Mac%20GN/builds/7019/steps/compile/logs/stdio gen/mojo/services/html_viewer/blink_resource_map.h:37:58:error: no newline at end of file [-Werror,-Wnewline-eof] #endif // MOJO_SERVICES_HTML_VIEWER_BLINK_RESOURCE_MAP_H_ Original issue's description: > Make a mojo:apptests GN meta-target, add apptests. > > Add an apptest meta-target in mojo/BUILD.gn. > Move the apptests targets specified in src/BUILD.gn. > Add the remaining apptest targets (clipboard, VM, WM). > > Was limited to release, allow debug, but exclude component. > See gn_debug compile error from including component build in PS2: > FAILED: /b/build/slave/linux_chromium_gn/build/src/buildtools/linux64/gn --root=/b/build/slave/linux_chromium_gn/build/src -q gen //out/Debug/ > ERROR at //mojo/shell/BUILD.gn:13:1: Assertion failed. > assert(!is_component_build) > > BUG=NONE > TEST=Building mojo:apptests builds all local apptest binaries (on dbg too!). > R=sky@chromium.org > TBR=ben@chromium.org > > Committed: https://crrev.com/16b112790f541670d5f2ab97dfa70c8b89b44b1f > Cr-Commit-Position: refs/heads/master@{#325570} TBR=sky@chromium.org,ben@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=NONE Review URL: https://codereview.chromium.org/1093763002 Cr-Commit-Position: refs/heads/master@{#325575}
Diffstat (limited to 'mojo')
-rw-r--r--mojo/BUILD.gn17
1 files changed, 0 insertions, 17 deletions
diff --git a/mojo/BUILD.gn b/mojo/BUILD.gn
index e3eff72..66e69af 100644
--- a/mojo/BUILD.gn
+++ b/mojo/BUILD.gn
@@ -39,20 +39,3 @@ group("tests") {
"//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests",
]
}
-
-# TODO(GYP): Not included in the mojo group meta-target; missing gyp targets.
-# See the gn_all and gn_only comments in //src/BUILD.gn.
-group("apptests") {
- testonly = true
- deps = []
- if (!is_component_build) {
- deps += [
- "//mojo/services/clipboard:apptests",
- "//mojo/services/html_viewer:apptests",
- "//mojo/services/network:apptests",
- "//mojo/services/view_manager:mojo_view_manager_client_apptests",
- "//mojo/services/view_manager:view_manager_service_apptests",
- "//mojo/services/window_manager:window_manager_apptests",
- ]
- }
-}