| 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) | 5 assert(!is_ios) |
| 6 | 6 |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 9 | 9 |
| 10 visibility = [ | 10 visibility = [ |
| 11 "//mojo/public/cpp/bindings/*", | 11 "//mojo/public/cpp/bindings/*", |
| 12 "//third_party/WebKit/*", | 12 "//third_party/WebKit/*", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 config("wtf_config") { | 15 config("wtf_config") { |
| 16 configs = [ "//third_party/WebKit/Source/platform/wtf:wtf_config" ] | 16 configs = [ "//third_party/WebKit/Source/platform/wtf:wtf_config" ] |
| 17 } | 17 } |
| 18 | 18 |
| 19 component("wtf") { | 19 component("wtf") { |
| 20 sources = [ | 20 sources = [ |
| 21 "ASCIICType.cpp", | |
| 22 "ASCIICType.h", | 21 "ASCIICType.h", |
| 23 "AddressSanitizer.h", | 22 "AddressSanitizer.h", |
| 24 "Alignment.h", | 23 "Alignment.h", |
| 25 "Allocator.h", | 24 "Allocator.h", |
| 26 "Assertions.cpp", | 25 "Assertions.cpp", |
| 27 "Assertions.h", | 26 "Assertions.h", |
| 28 "Atomics.h", | 27 "Atomics.h", |
| 29 "AutoReset.h", | 28 "AutoReset.h", |
| 30 "BitVector.cpp", | 29 "BitVector.cpp", |
| 31 "BitVector.h", | 30 "BitVector.h", |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 ] | 328 ] |
| 330 | 329 |
| 331 deps = [ | 330 deps = [ |
| 332 ":wtf", | 331 ":wtf", |
| 333 "//base", | 332 "//base", |
| 334 "//base/test:test_support", | 333 "//base/test:test_support", |
| 335 "//testing/gmock", | 334 "//testing/gmock", |
| 336 "//testing/gtest", | 335 "//testing/gtest", |
| 337 ] | 336 ] |
| 338 } | 337 } |
| OLD | NEW |