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

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2790463002: Fix WTF::makeUnique for arrays (Closed)
Patch Set: Created 3 years, 8 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
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/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//third_party/WebKit/public/public_features.gni") 9 import("//third_party/WebKit/public/public_features.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 1841 matching lines...) Expand 10 before | Expand all | Expand 10 after
1852 "transforms/RotationTest.cpp", 1852 "transforms/RotationTest.cpp",
1853 "transforms/TransformOperationsTest.cpp", 1853 "transforms/TransformOperationsTest.cpp",
1854 "transforms/TransformationMatrixTest.cpp", 1854 "transforms/TransformationMatrixTest.cpp",
1855 "weborigin/KURLTest.cpp", 1855 "weborigin/KURLTest.cpp",
1856 "weborigin/KnownPortsTest.cpp", 1856 "weborigin/KnownPortsTest.cpp",
1857 "weborigin/OriginAccessEntryTest.cpp", 1857 "weborigin/OriginAccessEntryTest.cpp",
1858 "weborigin/SchemeRegistryTest.cpp", 1858 "weborigin/SchemeRegistryTest.cpp",
1859 "weborigin/SecurityOriginTest.cpp", 1859 "weborigin/SecurityOriginTest.cpp",
1860 "weborigin/SecurityPolicyTest.cpp", 1860 "weborigin/SecurityPolicyTest.cpp",
1861 "weborigin/SuboriginTest.cpp", 1861 "weborigin/SuboriginTest.cpp",
1862 "wtf/PtrUtilTest.cpp",
Yuta Kitamura 2017/03/30 07:00:33 This is strange but understandable according to th
cblume 2017/03/30 07:11:22 Right, the move is exactly why I placed it here. T
Yuta Kitamura 2017/03/30 08:45:49 NP, just land this and I'll settle the things :)
1862 ] 1863 ]
1863 1864
1864 if (is_win) { 1865 if (is_win) {
1865 sources += [ "text/LocaleWinTest.cpp" ] 1866 sources += [ "text/LocaleWinTest.cpp" ]
1866 } else if (is_mac) { 1867 } else if (is_mac) {
1867 sources += [ "text/LocaleMacTest.cpp" ] 1868 sources += [ "text/LocaleMacTest.cpp" ]
1868 } else if (is_posix) { 1869 } else if (is_posix) {
1869 sources += [ "text/LocaleICUTest.cpp" ] 1870 sources += [ "text/LocaleICUTest.cpp" ]
1870 } 1871 }
1871 1872
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
2144 "//third_party/WebKit/Source:config", 2145 "//third_party/WebKit/Source:config",
2145 "//third_party/WebKit/Source:inside_blink", 2146 "//third_party/WebKit/Source:inside_blink",
2146 ] 2147 ]
2147 2148
2148 deps = [ 2149 deps = [
2149 ":test_support", 2150 ":test_support",
2150 "//testing/gmock", 2151 "//testing/gmock",
2151 "//testing/gtest", 2152 "//testing/gtest",
2152 ] 2153 ]
2153 } 2154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698