summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-10-30 16:50:51 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-10-30 16:50:51 +0000
commit5ce2d2e0c7899dc2d3b3ac6a25293894fea04183 (patch)
tree788020a72fc6f57d2d58c6befad0819aeecf376c /BUILD.gn
parent409726af056ddeab7f6fe4cf2a844bc954e77e0f (diff)
downloadpdfium-5ce2d2e0c7899dc2d3b3ac6a25293894fea04183.tar.xz
Rename JS_Runtime_Stub to cjs_runtimestub
This CL renames JS_Runtime_Stub.cpp to cjs_runtimestub.cpp to match the contents. The event context stub is moved to to cjs_event_context_stub.cpp. Change-Id: I1b231b10aaedd1fe484e55736b0fb562d0a0df88 Reviewed-on: https://pdfium-review.googlesource.com/17037 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn6
1 files changed, 5 insertions, 1 deletions
diff --git a/BUILD.gn b/BUILD.gn
index b6d3a184c8..7aaf6427d9 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -1261,7 +1261,11 @@ static_library("javascript") {
deps += [ ":fxjs" ]
configs += [ "//v8:external_startup_data" ]
} else {
- sources += [ "fpdfsdk/javascript/JS_Runtime_Stub.cpp" ]
+ sources += [
+ "fpdfsdk/javascript/cjs_event_context_stub.cpp",
+ "fpdfsdk/javascript/cjs_event_context_stub.h",
+ "fpdfsdk/javascript/cjs_runtimestub.cpp",
+ ]
}
}