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

Unified Diff: tools/gn/secondary/testing/BUILD.gn

Issue 26561005: GYP generator for GN (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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: tools/gn/secondary/testing/BUILD.gn
diff --git a/tools/gn/secondary/testing/BUILD.gn b/tools/gn/secondary/testing/BUILD.gn
index 08f3c4d22ebd405ee5ed205fee04715b102375e7..38b992c338259992f7b523cc651cd925da35d830 100644
--- a/tools/gn/secondary/testing/BUILD.gn
+++ b/tools/gn/secondary/testing/BUILD.gn
@@ -14,6 +14,7 @@ config("gtest_config") {
# TODO(brettw) move to testing/gtest/BUILD.gn
static_library("gtest") {
external = true
+ gyp_file = "gtest.gyp"
sources = [
"gtest/include/gtest/gtest-death-test.h",
"gtest/include/gtest/gtest-message.h",
@@ -60,6 +61,7 @@ config("gmock_config") {
# TODO(brettw) move to testing/gmock/BUILD.gn
static_library("gmock") {
+ gyp_file = "gmock.gyp"
external = true
sources = [
# Sources based on files in r173 of gmock.
@@ -96,6 +98,7 @@ static_library("gmock") {
# TODO(brettw) move to testing/gmock/BUILD.gn
static_library("gmock_main") {
external = true
+ gyp_file = "gmock.gyp"
sources = [ "src/gmock_main.cc" ]
deps = [ ":gmock" ]
}

Powered by Google App Engine
This is Rietveld 408576698