diff options
author | toyoshim <toyoshim@chromium.org> | 2015-04-30 07:52:02 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-30 14:52:36 +0000 |
commit | c6475779990f6ffdfa33d42b0bd97818df5e8d3c (patch) | |
tree | 8d7993b714b48c21c570833127f06c3e6a0c545f /tools/valgrind | |
parent | 3140c7194502109de2f7803d00e68fc10c94d2b6 (diff) | |
download | chromium_src-c6475779990f6ffdfa33d42b0bd97818df5e8d3c.zip chromium_src-c6475779990f6ffdfa33d42b0bd97818df5e8d3c.tar.gz chromium_src-c6475779990f6ffdfa33d42b0bd97818df5e8d3c.tar.bz2 |
Reland: Web MIDI: split build rules for media/midi
Changes from the first coommit.
- Define right dependencies to xdisplaycheck
- Fix build rules for midi_unittests_apk to run on Android
- Rebase error fixes (build rule deopendency adjustments)
Original commit is:
https://crrev.com/31624cad1a3b5cf26950b864837ba44b3aa38331
Original description follows:
Split MIDI related stuffs from media as a component in build files.
Also, MIDI related unit tests are split into midi_unittests.
BUG=475869
TEST=git cl try
TEST=ninja midi_unittests_apk && ./build/android/test_runner.py gtest midi_unittests
Review URL: https://codereview.chromium.org/1065743003
Cr-Commit-Position: refs/heads/master@{#327712}
Diffstat (limited to 'tools/valgrind')
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index e8074f3..571beb1 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -401,6 +401,9 @@ class ChromeTests: def TestMessageCenter(self): return self.SimpleTest("message_center", "message_center_unittests") + def TestMidi(self): + return self.SimpleTest("chrome", "midi_unittests") + def TestMojoCommon(self): return self.SimpleTest("mojo_common", "mojo_common_unittests") @@ -696,6 +699,7 @@ class ChromeTests: "media": TestMedia, "media_unittests": TestMedia, "message_center": TestMessageCenter, "message_center_unittests" : TestMessageCenter, + "midi": TestMidi, "midi_unittests": TestMidi, "mojo_common": TestMojoCommon, "mojo_system": TestMojoSystem, "mojo_public_system": TestMojoPublicSystem, |