| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//third_party/WebKit/Source/core/core.gni") | 5 import("//third_party/WebKit/Source/core/core.gni") |
| 6 | 6 |
| 7 blink_core_sources("xml") { | 7 blink_core_sources("xml") { |
| 8 sources = [ | 8 sources = [ |
| 9 "DOMParser.cpp", | 9 "DOMParser.cpp", |
| 10 "DOMParser.h", | 10 "DOMParser.h", |
| 11 "DocumentXMLTreeViewer.cpp", |
| 12 "DocumentXMLTreeViewer.h", |
| 11 "DocumentXPathEvaluator.cpp", | 13 "DocumentXPathEvaluator.cpp", |
| 12 "DocumentXPathEvaluator.h", | 14 "DocumentXPathEvaluator.h", |
| 13 "DocumentXSLT.cpp", | 15 "DocumentXSLT.cpp", |
| 14 "DocumentXSLT.h", | 16 "DocumentXSLT.h", |
| 15 "NativeXPathNSResolver.cpp", | 17 "NativeXPathNSResolver.cpp", |
| 16 "NativeXPathNSResolver.h", | 18 "NativeXPathNSResolver.h", |
| 17 "XMLSerializer.cpp", | 19 "XMLSerializer.cpp", |
| 18 "XMLSerializer.h", | 20 "XMLSerializer.h", |
| 19 "XPathEvaluator.cpp", | 21 "XPathEvaluator.cpp", |
| 20 "XPathEvaluator.h", | 22 "XPathEvaluator.h", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "parser/XMLErrors.cpp", | 66 "parser/XMLErrors.cpp", |
| 65 "parser/XMLErrors.h", | 67 "parser/XMLErrors.h", |
| 66 "parser/XMLParserInput.h", | 68 "parser/XMLParserInput.h", |
| 67 ] | 69 ] |
| 68 | 70 |
| 69 configs += [ | 71 configs += [ |
| 70 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 72 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 71 "//build/config/compiler:no_size_t_to_int_warning", | 73 "//build/config/compiler:no_size_t_to_int_warning", |
| 72 ] | 74 ] |
| 73 } | 75 } |
| OLD | NEW |