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

Unified Diff: media/blink/BUILD.gn

Issue 746003002: Enable webrtc and most of blink and content in the Mac GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « content/shell/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/blink/BUILD.gn
diff --git a/media/blink/BUILD.gn b/media/blink/BUILD.gn
index fbf06dcf121efdc62ad6fd432397ea74d8393ee0..5d3a60cd5d6e36b54d2b17bd3facc64c48e08dce 100644
--- a/media/blink/BUILD.gn
+++ b/media/blink/BUILD.gn
@@ -74,37 +74,40 @@ component("blink") {
}
}
-test("media_blink_unittests") {
- deps = [
- ":blink",
- "//base",
- "//base/test:test_support",
- "//cc",
- "//cc/blink",
- "//media",
- "//media:shared_memory_support",
- "//media/base:test_support",
- "//net",
- "//testing/gmock",
- "//testing/gtest",
- "//third_party/WebKit/public:blink",
- "//ui/gfx/geometry",
- "//ui/gfx:test_support",
- "//url",
- ]
+if (!is_mac) {
+ # TODO(GYP): Make linking this work on the mac.
+ test("media_blink_unittests") {
+ deps = [
+ ":blink",
+ "//base",
+ "//base/test:test_support",
+ "//cc",
+ "//cc/blink",
+ "//media",
+ "//media:shared_memory_support",
+ "//media/base:test_support",
+ "//net",
+ "//testing/gmock",
+ "//testing/gtest",
+ "//third_party/WebKit/public:blink",
+ "//ui/gfx/geometry",
+ "//ui/gfx:test_support",
+ "//url",
+ ]
- sources = [
- "buffered_data_source_host_impl_unittest.cc",
- "buffered_data_source_unittest.cc",
- "buffered_resource_loader_unittest.cc",
- "cache_util_unittest.cc",
- "mock_webframeclient.h",
- "mock_weburlloader.cc",
- "mock_weburlloader.h",
- "run_all_unittests.cc",
- "test_response_generator.cc",
- "test_response_generator.h",
- "video_frame_compositor_unittest.cc",
- "webaudiosourceprovider_impl_unittest.cc",
- ]
+ sources = [
+ "buffered_data_source_host_impl_unittest.cc",
+ "buffered_data_source_unittest.cc",
+ "buffered_resource_loader_unittest.cc",
+ "cache_util_unittest.cc",
+ "mock_webframeclient.h",
+ "mock_weburlloader.cc",
+ "mock_weburlloader.h",
+ "run_all_unittests.cc",
+ "test_response_generator.cc",
+ "test_response_generator.h",
+ "video_frame_compositor_unittest.cc",
+ "webaudiosourceprovider_impl_unittest.cc",
+ ]
+ }
}
« no previous file with comments | « content/shell/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698