| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |