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

Side by Side Diff: BUILD.gn

Issue 1351383004: Change nonstd::unique_ptr to take a custom deleter. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: forgot the unit test Created 5 years, 3 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 | core/include/fxcrt/fx_basic.h » ('j') | core/include/fxcrt/fx_basic.h » ('J')
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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 pdf_use_skia = false 7 pdf_use_skia = false
8 8
9 declare_args() { 9 declare_args() {
10 # On Android there's no system FreeType. On Windows and Mac, only a few 10 # On Android there's no system FreeType. On Windows and Mac, only a few
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 ":pdfium_config", 728 ":pdfium_config",
729 "//build/config/compiler:no_chromium_code", 729 "//build/config/compiler:no_chromium_code",
730 ] 730 ]
731 } 731 }
732 732
733 test("pdfium_unittests") { 733 test("pdfium_unittests") {
734 sources = [ 734 sources = [
735 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp", 735 "core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp",
736 "core/src/fxcrt/fx_basic_bstring_unittest.cpp", 736 "core/src/fxcrt/fx_basic_bstring_unittest.cpp",
737 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp", 737 "core/src/fxcrt/fx_basic_memmgr_unittest.cpp",
738 "core/src/fxcrt/fx_basic_unique_ptr_unittest.cpp",
Tom Sepez 2015/09/18 23:29:32 I guess this is OK, I might like it better if it w
Lei Zhang 2015/09/18 23:51:51 Moved over to third_party/base/nonstd_unique_ptr_u
738 "core/src/fxcrt/fx_basic_wstring_unittest.cpp", 739 "core/src/fxcrt/fx_basic_wstring_unittest.cpp",
739 "core/src/fxcrt/fx_bidi_unittest.cpp", 740 "core/src/fxcrt/fx_bidi_unittest.cpp",
740 "core/src/fxcrt/fx_system_unittest.cpp", 741 "core/src/fxcrt/fx_system_unittest.cpp",
741 "testing/fx_string_testhelpers.cpp", 742 "testing/fx_string_testhelpers.cpp",
742 "testing/fx_string_testhelpers.h", 743 "testing/fx_string_testhelpers.h",
743 ] 744 ]
744 deps = [ 745 deps = [
745 "//testing/gtest", 746 "//testing/gtest",
746 "//testing/gtest:gtest_main", 747 "//testing/gtest:gtest_main",
747 ":pdfium", 748 ":pdfium",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 "//v8", 785 "//v8",
785 "//v8/include", 786 "//v8/include",
786 "." 787 "."
787 ] 788 ]
788 configs -= [ "//build/config/compiler:chromium_code" ] 789 configs -= [ "//build/config/compiler:chromium_code" ]
789 configs += [ 790 configs += [
790 ":pdfium_config", 791 ":pdfium_config",
791 "//build/config/compiler:no_chromium_code", 792 "//build/config/compiler:no_chromium_code",
792 ] 793 ]
793 } 794 }
OLDNEW
« no previous file with comments | « no previous file | core/include/fxcrt/fx_basic.h » ('j') | core/include/fxcrt/fx_basic.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698