| 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 assert(!is_ios) |
| 6 |
| 5 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 6 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 7 | 9 |
| 8 # The list of files is kept in the .gypi. | 10 # The list of files is kept in the .gypi. |
| 9 gypi_values = exec_script("//build/gypi_to_gn.py", | 11 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 10 [ rebase_path("wtf.gypi") ], | 12 [ rebase_path("wtf.gypi") ], |
| 11 "scope", | 13 "scope", |
| 12 [ "wtf.gypi" ]) | 14 [ "wtf.gypi" ]) |
| 13 | 15 |
| 14 visibility = [ | 16 visibility = [ |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 configs += [ "//third_party/WebKit/Source:config" ] | 124 configs += [ "//third_party/WebKit/Source:config" ] |
| 123 | 125 |
| 124 deps = [ | 126 deps = [ |
| 125 ":wtf", | 127 ":wtf", |
| 126 "//base", | 128 "//base", |
| 127 "//base/test:test_support", | 129 "//base/test:test_support", |
| 128 "//testing/gmock", | 130 "//testing/gmock", |
| 129 "//testing/gtest", | 131 "//testing/gtest", |
| 130 ] | 132 ] |
| 131 } | 133 } |
| OLD | NEW |