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") |
| 6 |
5 visibility = [ "//sky/*" ] | 7 visibility = [ "//sky/*" ] |
6 | 8 |
7 component("wtf") { | 9 component("wtf") { |
8 sources = [ | 10 sources = [ |
9 "AddressSpaceRandomization.cpp", | 11 "AddressSpaceRandomization.cpp", |
10 "AddressSpaceRandomization.h", | 12 "AddressSpaceRandomization.h", |
11 "Alignment.h", | 13 "Alignment.h", |
12 "ArrayBuffer.cpp", | 14 "ArrayBuffer.cpp", |
13 "ArrayBuffer.h", | 15 "ArrayBuffer.h", |
14 "ArrayBufferBuilder.cpp", | 16 "ArrayBufferBuilder.cpp", |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 | 299 |
298 configs += [ | 300 configs += [ |
299 "//sky/engine:config", | 301 "//sky/engine:config", |
300 "//sky/engine:non_test_config", | 302 "//sky/engine:non_test_config", |
301 ] | 303 ] |
302 | 304 |
303 deps = [ | 305 deps = [ |
304 ":wtf", | 306 ":wtf", |
305 ] | 307 ] |
306 } | 308 } |
OLD | NEW |