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

Unified Diff: tools/release/update_node.py

Issue 2849783003: Update update_node to new gtest path.
Patch Set: Created 3 years, 8 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
« no previous file with comments | « tools/release/testdata/v8/third_party/googletest/src/googletest/include/gtest/new/gtest_new ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/release/update_node.py
diff --git a/tools/release/update_node.py b/tools/release/update_node.py
index 6232fe05bd13134707cc1b4b7f11269ea47cc5d1..8aff180c5c215b60487a24cfdd4ac8e3f28bb285 100755
--- a/tools/release/update_node.py
+++ b/tools/release/update_node.py
@@ -32,23 +32,27 @@ import sys
TARGET_SUBDIR = os.path.join("deps", "v8")
SUB_REPOSITORIES = [ ["base", "trace_event", "common"],
- ["testing", "gtest"],
+ ["third_party", "googletest", "src"],
["third_party", "jinja2"],
["third_party", "markupsafe"] ]
DELETE_FROM_GITIGNORE = [ "/base",
- "/testing/gtest",
+ "/third_party/googletest/src",
"/third_party/jinja2",
"/third_party/markupsafe" ]
# Node.js requires only a single header file from gtest to build V8.
# Both jinja2 and markupsafe are required to generate part of the inspector.
-ADD_TO_GITIGNORE = [ "/testing/gtest/*",
- "!/testing/gtest/include",
- "/testing/gtest/include/*",
- "!/testing/gtest/include/gtest",
- "/testing/gtest/include/gtest/*",
- "!/testing/gtest/include/gtest/gtest_prod.h",
+ADD_TO_GITIGNORE = [ "/third_party/googletest/*",
+ "!/third_party/googletest/src",
+ "/third_party/googletest/src/*",
+ "!/third_party/googletest/src/googletest",
+ "/third_party/googletest/src/googletest/*",
+ "!/third_party/googletest/src/googletest/include",
+ "/third_party/googletest/src/googletest/include/*",
+ "!/third_party/googletest/src/googletest/include/gtest",
+ "/third_party/googletest/src/googletest/include/gtest/*",
+ "!/third_party/googletest/src/googletest/include/gtest/gtest_prod.h",
"!/third_party/jinja2",
"!/third_party/markupsafe" ]
« no previous file with comments | « tools/release/testdata/v8/third_party/googletest/src/googletest/include/gtest/new/gtest_new ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698