diff options
author | dpranke <dpranke@chromium.org> | 2015-07-22 16:07:43 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-22 23:08:59 +0000 |
commit | 177c1e29c1abeb267b3ab1283a4c7c03a398ec6f (patch) | |
tree | 516d21ce732fc87744008318a7372dac167cd5ea /url | |
parent | 9c3eeb20e87a3c072849e7d45cfda54786e5543f (diff) | |
download | chromium_src-177c1e29c1abeb267b3ab1283a4c7c03a398ec6f.zip chromium_src-177c1e29c1abeb267b3ab1283a4c7c03a398ec6f.tar.gz chromium_src-177c1e29c1abeb267b3ab1283a4c7c03a398ec6f.tar.bz2 |
Add GN isolate support for a bunch of unittests.
This enables the following tests to be run under
swarming on a GN bot:
- angle_unittests
- accessibility_unittests
- compositor_unittests
- cc_unittests
- ipc_tests
- gl_unittests
- sandbox_linux_unittests
- gn_unittests
- skia_unittests
- sql_unittests
- url_unittests
R=brettw@chromium.org, maruel@chromium.org
BUG=504079
CQ_EXTRA_TRYBOTS=tryserver.chromium.mac:mac_chromium_gn_rel
Review URL: https://codereview.chromium.org/1248673005
Cr-Commit-Position: refs/heads/master@{#339973}
Diffstat (limited to 'url')
-rw-r--r-- | url/BUILD.gn | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/url/BUILD.gn b/url/BUILD.gn index 2beed04..d5ea067 100644 --- a/url/BUILD.gn +++ b/url/BUILD.gn @@ -95,6 +95,15 @@ component("url") { # TODO(dpranke): crbug.com/360936. Get this to build and run on Android. if (!is_android) { + # TODO(GYP): Delete this after we've converted everything to GN. + # The _run targets exist only for compatibility w/ GYP. + group("url_unittests_run") { + testonly = true + deps = [ + ":url_unittests", + ] + } + test("url_unittests") { sources = [ "deprecated_serialized_origin_unittest.cc", |