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

Side by Side Diff: BUILD.gn

Issue 2260663002: Add initial Document::getAnnot support (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Addressed thestig's and tsepez' feedback Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | fpdfsdk/javascript/Annot.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build_overrides/v8.gni") 5 import("//build_overrides/v8.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("pdfium.gni") 7 import("pdfium.gni")
8 8
9 config("pdfium_common_config") { 9 config("pdfium_common_config") {
10 cflags = [] 10 cflags = []
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 configs += [ ":pdfium_core_config" ] 863 configs += [ ":pdfium_core_config" ]
864 } 864 }
865 865
866 static_library("javascript") { 866 static_library("javascript") {
867 sources = [ 867 sources = [
868 "fpdfsdk/javascript/ijs_context.h", 868 "fpdfsdk/javascript/ijs_context.h",
869 "fpdfsdk/javascript/ijs_runtime.h", 869 "fpdfsdk/javascript/ijs_runtime.h",
870 ] 870 ]
871 if (pdf_enable_v8) { 871 if (pdf_enable_v8) {
872 sources += [ 872 sources += [
873 "fpdfsdk/javascript/Annot.cpp",
Lei Zhang 2016/08/19 02:51:31 Update the corresponding .gyp file. We'll remove t
874 "fpdfsdk/javascript/Annot.h",
873 "fpdfsdk/javascript/Consts.cpp", 875 "fpdfsdk/javascript/Consts.cpp",
874 "fpdfsdk/javascript/Consts.h", 876 "fpdfsdk/javascript/Consts.h",
875 "fpdfsdk/javascript/Document.cpp", 877 "fpdfsdk/javascript/Document.cpp",
876 "fpdfsdk/javascript/Document.h", 878 "fpdfsdk/javascript/Document.h",
877 "fpdfsdk/javascript/Field.cpp", 879 "fpdfsdk/javascript/Field.cpp",
878 "fpdfsdk/javascript/Field.h", 880 "fpdfsdk/javascript/Field.h",
879 "fpdfsdk/javascript/Icon.cpp", 881 "fpdfsdk/javascript/Icon.cpp",
880 "fpdfsdk/javascript/Icon.h", 882 "fpdfsdk/javascript/Icon.h",
881 "fpdfsdk/javascript/JS_Define.h", 883 "fpdfsdk/javascript/JS_Define.h",
882 "fpdfsdk/javascript/JS_EventHandler.cpp", 884 "fpdfsdk/javascript/JS_EventHandler.cpp",
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after
1685 } 1687 }
1686 1688
1687 if (pdf_is_standalone) { 1689 if (pdf_is_standalone) {
1688 source_set("samples") { 1690 source_set("samples") {
1689 testonly = true 1691 testonly = true
1690 deps = [ 1692 deps = [
1691 "//samples", 1693 "//samples",
1692 ] 1694 ]
1693 } 1695 }
1694 } 1696 }
OLDNEW
« no previous file with comments | « no previous file | fpdfsdk/javascript/Annot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698