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

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

Issue 1458513002: Implement StringUTF8Adaptor::asStringPiece. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add //base to wtf's public_deps. Created 5 years, 1 month 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 | third_party/WebKit/Source/wtf/DEPS » ('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("//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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 public_configs = [ 53 public_configs = [
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 "//third_party/icu", 63 "//third_party/icu",
63 ] 64 ]
64 65
65 if (is_win) { 66 if (is_win) {
66 sources -= [ "ThreadingPthreads.cpp" ] 67 sources -= [ "ThreadingPthreads.cpp" ]
67 68
68 cflags = [ "/wd4068" ] # Unknown pragma. 69 cflags = [ "/wd4068" ] # Unknown pragma.
69 } else { 70 } else {
70 # Non-Windows. 71 # Non-Windows.
71 sources -= [ 72 sources -= [
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 134 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
134 "//build/config/compiler:no_size_t_to_int_warning", 135 "//build/config/compiler:no_size_t_to_int_warning",
135 "//third_party/WebKit/Source:config", 136 "//third_party/WebKit/Source:config",
136 "//third_party/WebKit/Source:non_test_config", 137 "//third_party/WebKit/Source:non_test_config",
137 ] 138 ]
138 139
139 deps = [ 140 deps = [
140 ":wtf", 141 ":wtf",
141 ] 142 ]
142 } 143 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/wtf/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698