diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-30 16:50:51 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-30 16:50:51 +0000 |
commit | 5ce2d2e0c7899dc2d3b3ac6a25293894fea04183 (patch) | |
tree | 788020a72fc6f57d2d58c6befad0819aeecf376c /BUILD.gn | |
parent | 409726af056ddeab7f6fe4cf2a844bc954e77e0f (diff) | |
download | pdfium-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.gn | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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", + ] } } |