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

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

Issue 1856793002: Revert of WTF::ThreadSpecific should use base::ThreadLocalStorage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Manual revert Created 4 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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//third_party/WebKit/Source/config.gni") 6 import("//third_party/WebKit/Source/config.gni")
7 7
8 # The list of files is kept in the .gypi. 8 # The list of files is kept in the .gypi.
9 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("wtf.gypi") ], 10 [ rebase_path("wtf.gypi") ],
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 "//base", 66 "//base",
67 "//third_party/icu", 67 "//third_party/icu",
68 ] 68 ]
69 69
70 if (is_win) { 70 if (is_win) {
71 sources -= [ "ThreadingPthreads.cpp" ] 71 sources -= [ "ThreadingPthreads.cpp" ]
72 72
73 cflags = [ "/wd4068" ] # Unknown pragma. 73 cflags = [ "/wd4068" ] # Unknown pragma.
74 } else { 74 } else {
75 # Non-Windows. 75 # Non-Windows.
76 sources -= [ "ThreadingWin.cpp" ] 76 sources -= [
77 "ThreadSpecificWin.cpp",
78 "ThreadingWin.cpp",
79 ]
77 } 80 }
78 81
79 if (is_android) { 82 if (is_android) {
80 libs = [ "log" ] 83 libs = [ "log" ]
81 } 84 }
82 if (is_linux) { 85 if (is_linux) {
83 libs = [ "dl" ] 86 libs = [ "dl" ]
84 } 87 }
85 88
86 if (is_mac) { 89 if (is_mac) {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 configs += [ "//third_party/WebKit/Source:config" ] 122 configs += [ "//third_party/WebKit/Source:config" ]
120 123
121 deps = [ 124 deps = [
122 ":wtf", 125 ":wtf",
123 "//base", 126 "//base",
124 "//base/test:test_support", 127 "//base/test:test_support",
125 "//testing/gmock", 128 "//testing/gmock",
126 "//testing/gtest", 129 "//testing/gtest",
127 ] 130 ]
128 } 131 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/text/TextBreakIteratorICU.cpp ('k') | third_party/WebKit/Source/wtf/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698