| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |