summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-10-30 17:29:24 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-10-30 17:29:24 +0000
commita5c874c1240a0be86d6db0536940c1d0942b4c6d (patch)
tree811058a078d42fc395462379b13ef62002dca3d6 /BUILD.gn
parenta146507fdbe8a8d13fe590b5fa883efc7bffe90a (diff)
downloadpdfium-a5c874c1240a0be86d6db0536940c1d0942b4c6d.tar.xz
Rename PublicMethods to cjs_publicmethods
This CL renames the PublicMethods.{cpp|h} files to match the internal class name. Change-Id: I530f4ce5b53dd74cbef447faf0875782bfe27b70 Reviewed-on: https://pdfium-review.googlesource.com/17039 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn8
1 files changed, 4 insertions, 4 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 612ea18cdc..5d86038d14 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -1194,8 +1194,6 @@ static_library("javascript") {
"fpdfsdk/javascript/JS_GlobalData.h",
"fpdfsdk/javascript/JS_KeyValue.cpp",
"fpdfsdk/javascript/JS_KeyValue.h",
- "fpdfsdk/javascript/PublicMethods.cpp",
- "fpdfsdk/javascript/PublicMethods.h",
"fpdfsdk/javascript/app.cpp",
"fpdfsdk/javascript/app.h",
"fpdfsdk/javascript/cjs_annot.cpp",
@@ -1234,6 +1232,8 @@ static_library("javascript") {
"fpdfsdk/javascript/cjs_position.h",
"fpdfsdk/javascript/cjs_printparamsobj.cpp",
"fpdfsdk/javascript/cjs_printparamsobj.h",
+ "fpdfsdk/javascript/cjs_publicmethods.cpp",
+ "fpdfsdk/javascript/cjs_publicmethods.h",
"fpdfsdk/javascript/cjs_return.cpp",
"fpdfsdk/javascript/cjs_return.h",
"fpdfsdk/javascript/cjs_runtime.cpp",
@@ -2010,7 +2010,7 @@ test("pdfium_unittests") {
}
if (pdf_enable_v8) {
sources += [
- "fpdfsdk/javascript/public_methods_unittest.cpp",
+ "fpdfsdk/javascript/cjs_publicmethods_unittest.cpp",
"fpdfsdk/javascript/util_unittest.cpp",
]
include_dirs += [
@@ -2074,7 +2074,7 @@ test("pdfium_embeddertests") {
if (pdf_enable_v8) {
sources += [
- "fpdfsdk/javascript/public_methods_embeddertest.cpp",
+ "fpdfsdk/javascript/cjs_publicmethods_embeddertest.cpp",
"fxjs/fxjs_v8_embeddertest.cpp",
"testing/js_embedder_test.cpp",
"testing/js_embedder_test.h",