Commit d157fe49 authored by Yang Guo's avatar Yang Guo Committed by Commit Bot

[node] no longer copy jinja and markupsafe

These are now direct dependencies in Node.js.

R=lushnikov@chromium.org

Change-Id: I01a68394e2e22a1024b6c21b8222ac8b113fc693
Reviewed-on: https://chromium-review.googlesource.com/1179143
Commit-Queue: Yang Guo <yangguo@chromium.org>
Reviewed-by: 's avatarPeter Marshall <petermarshall@chromium.org>
Reviewed-by: 's avatarCamillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/master@{#55573}
parent b72fe64e
......@@ -34,17 +34,12 @@ import node_common
TARGET_SUBDIR = os.path.join("deps", "v8")
SUB_REPOSITORIES = [ ["base", "trace_event", "common"],
["third_party", "googletest", "src"],
["third_party", "jinja2"],
["third_party", "markupsafe"] ]
["third_party", "googletest", "src"] ]
DELETE_FROM_GITIGNORE = [ "/base",
"/third_party/googletest/src",
"/third_party/jinja2",
"/third_party/markupsafe" ]
"/third_party/googletest/src" ]
# 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 = [ "/third_party/googletest/*",
"!/third_party/googletest/BUILD.gn",
"!/third_party/googletest/src",
......@@ -55,9 +50,7 @@ ADD_TO_GITIGNORE = [ "/third_party/googletest/*",
"/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" ]
"!/third_party/googletest/src/googletest/include/gtest/gtest_prod.h" ]
# Node.js owns deps/v8/gypfiles in their downstream repository.
FILES_TO_KEEP = [ "gypfiles" ]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment