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

Unified Diff: Source/web/BUILD.gn

Issue 701043002: Get more of the mac GN build working. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update comments 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 | « Source/platform/BUILD.gn ('k') | public/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/BUILD.gn
diff --git a/Source/web/BUILD.gn b/Source/web/BUILD.gn
index 0c0aa568529a0309252ef45c1850596f14199492..00c930c8ffe7af0cb40299a1155db7118bb654d5 100644
--- a/Source/web/BUILD.gn
+++ b/Source/web/BUILD.gn
@@ -105,36 +105,39 @@ source_set("test_support") {
}
# GYP version: WebKit/Source/web/web_tests.gyp:webkit_unit_tests
-test("webkit_unit_tests") {
- deps = [
- ":test_support",
- ":web",
- "//base",
- "//base/test:test_support",
- "//base:i18n",
- "//content/test:test_support",
- "//testing/gmock",
- "//testing/gtest",
- "//third_party/WebKit/Source/wtf:test_support",
- "//third_party/libwebp",
- "//third_party/zlib",
- "//url",
- "//v8",
- ]
+if (!is_mac) {
+ # TODO(GYP): Can't link Blink binaries yet on mac.
+ test("webkit_unit_tests") {
+ deps = [
+ ":test_support",
+ ":web",
+ "//base",
+ "//base/test:test_support",
+ "//base:i18n",
+ "//content/test:test_support",
+ "//testing/gmock",
+ "//testing/gtest",
+ "//third_party/WebKit/Source/wtf:test_support",
+ "//third_party/libwebp",
+ "//third_party/zlib",
+ "//url",
+ "//v8",
+ ]
- sources = [ "tests/RunAllTests.cpp" ]
+ sources = [ "tests/RunAllTests.cpp" ]
- configs += [ "//third_party/WebKit/Source:config" ]
+ configs += [ "//third_party/WebKit/Source:config" ]
- if (!is_component_build) {
- deps += [ "//third_party/WebKit/Source/core" ]
+ if (!is_component_build) {
+ deps += [ "//third_party/WebKit/Source/core" ]
- configs += [ "//third_party/WebKit/Source:inside_blink" ]
+ configs += [ "//third_party/WebKit/Source:inside_blink" ]
- sources += web_gypi.web_unittest_files
- sources += bindings_unittest_files
- sources += core_unittest_files
- sources += modules_unittest_files
- sources += platform_web_unittest_files
+ sources += web_gypi.web_unittest_files
+ sources += bindings_unittest_files
+ sources += core_unittest_files
+ sources += modules_unittest_files
+ sources += platform_web_unittest_files
+ }
}
}
« no previous file with comments | « Source/platform/BUILD.gn ('k') | public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698