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

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

Issue 1389383003: WIP: Introduce CompressibleString Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase onto crrev.com/1564773002 Created 4 years, 11 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 6
7 # The list of files is kept in the .gypi. 7 # The list of files is kept in the .gypi.
8 gypi_values = exec_script("//build/gypi_to_gn.py", 8 gypi_values = exec_script("//build/gypi_to_gn.py",
9 [ rebase_path("wtf.gypi") ], 9 [ rebase_path("wtf.gypi") ],
10 "scope", 10 "scope",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 ":wtf_config", 54 ":wtf_config",
55 55
56 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 56 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
57 "//build/config/compiler:no_size_t_to_int_warning", 57 "//build/config/compiler:no_size_t_to_int_warning",
58 "//third_party/WebKit/Source:features", 58 "//third_party/WebKit/Source:features",
59 ] 59 ]
60 60
61 public_deps = [ 61 public_deps = [
62 "//base", 62 "//base",
63 "//third_party/icu", 63 "//third_party/icu",
64 "//third_party/zlib:compression_utils",
64 ] 65 ]
65 66
66 if (is_win) { 67 if (is_win) {
67 sources -= [ "ThreadingPthreads.cpp" ] 68 sources -= [ "ThreadingPthreads.cpp" ]
68 69
69 cflags = [ "/wd4068" ] # Unknown pragma. 70 cflags = [ "/wd4068" ] # Unknown pragma.
70 } else { 71 } else {
71 # Non-Windows. 72 # Non-Windows.
72 sources -= [ 73 sources -= [
73 "ThreadSpecificWin.cpp", 74 "ThreadSpecificWin.cpp",
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 144 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
144 "//build/config/compiler:no_size_t_to_int_warning", 145 "//build/config/compiler:no_size_t_to_int_warning",
145 "//third_party/WebKit/Source:config", 146 "//third_party/WebKit/Source:config",
146 "//third_party/WebKit/Source:non_test_config", 147 "//third_party/WebKit/Source:non_test_config",
147 ] 148 ]
148 149
149 deps = [ 150 deps = [
150 ":wtf", 151 ":wtf",
151 ] 152 ]
152 } 153 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/Page.cpp ('k') | third_party/WebKit/Source/wtf/WTFThreadData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698