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

Side by Side Diff: BUILD.gn

Issue 1533233002: Fix JS seconds since epoch to date conversions. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: more test cases Created 5 years 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/src/javascript/JS_Value.cpp » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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_config") { 9 config("pdfium_config") {
10 cflags = [] 10 cflags = []
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 "testing/embedder_test_timer_handling_delegate.h", 768 "testing/embedder_test_timer_handling_delegate.h",
769 ] 769 ]
770 deps = [ 770 deps = [
771 "//testing/gmock", 771 "//testing/gmock",
772 "//testing/gtest", 772 "//testing/gtest",
773 ":pdfium", 773 ":pdfium",
774 ":test_support", 774 ":test_support",
775 ] 775 ]
776 include_dirs = [] 776 include_dirs = []
777 if (pdf_enable_v8) { 777 if (pdf_enable_v8) {
778 sources += [ "fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp" ] 778 sources += [
779 "fpdfsdk/src/javascript/public_methods_embeddertest.cpp",
780 "fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp",
781 "testing/js_embedder_test.cpp",
782 "testing/js_embedder_test.h",
783 ]
779 deps += [ 784 deps += [
780 "//v8", 785 "//v8",
781 "//v8:v8_libplatform", 786 "//v8:v8_libplatform",
782 ] 787 ]
783 include_dirs += [ 788 include_dirs += [
784 "//v8", 789 "//v8",
785 "//v8/include", 790 "//v8/include",
786 ] 791 ]
787 configs += [ "//v8:external_startup_data" ] 792 configs += [ "//v8:external_startup_data" ]
788 } 793 }
789 configs += [ ":pdfium_config" ] 794 configs += [ ":pdfium_config" ]
790 } 795 }
OLDNEW
« no previous file with comments | « no previous file | fpdfsdk/src/javascript/JS_Value.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698