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

Unified Diff: third_party/openh264/tests/BUILD.gn

Issue 1394983003: openh264_unittests empty dummy test added (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: LICENSE file to satisfy webview_licenses.py (will be replaced by third_party/openh264/src/LICENSE when future CL pulls in src) Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/openh264/tests/BUILD.gn
diff --git a/chrome/installer/launcher_support/BUILD.gn b/third_party/openh264/tests/BUILD.gn
similarity index 54%
copy from chrome/installer/launcher_support/BUILD.gn
copy to third_party/openh264/tests/BUILD.gn
index 9abab50df0aefabdc299b6795e0fee8f77ee83f2..5441a99a393fd97a4d7ba6a7c2378001bd20d4f0 100644
--- a/chrome/installer/launcher_support/BUILD.gn
+++ b/third_party/openh264/tests/BUILD.gn
@@ -2,13 +2,19 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("launcher_support") {
- sources = [
- "chrome_launcher_support.cc",
- "chrome_launcher_support.h",
+import("//testing/test.gni")
+
+test("openh264_unittests") {
+ include_dirs = [
+ "//",
kjellander_chromium 2015/10/13 14:18:25 Is the root really needed? I thought it was implic
+ "//third_party",
]
deps = [
- "//base",
+ "//testing/gtest",
+ ]
+
+ sources = [
+ "openh264_unittests.cc",
]
}

Powered by Google App Engine
This is Rietveld 408576698