| 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", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "XSLImportRule.h", | 49 "XSLImportRule.h", |
| 50 "XSLStyleSheet.h", | 50 "XSLStyleSheet.h", |
| 51 "XSLStyleSheetLibxslt.cpp", | 51 "XSLStyleSheetLibxslt.cpp", |
| 52 "XSLTExtensions.cpp", | 52 "XSLTExtensions.cpp", |
| 53 "XSLTExtensions.h", | 53 "XSLTExtensions.h", |
| 54 "XSLTProcessor.cpp", | 54 "XSLTProcessor.cpp", |
| 55 "XSLTProcessor.h", | 55 "XSLTProcessor.h", |
| 56 "XSLTProcessorLibxslt.cpp", | 56 "XSLTProcessorLibxslt.cpp", |
| 57 "XSLTUnicodeSort.cpp", | 57 "XSLTUnicodeSort.cpp", |
| 58 "XSLTUnicodeSort.h", | 58 "XSLTUnicodeSort.h", |
| 59 "parser/MarkupTokenizerInlines.h", | |
| 60 "parser/SharedBufferReader.cpp", | 59 "parser/SharedBufferReader.cpp", |
| 61 "parser/SharedBufferReader.h", | 60 "parser/SharedBufferReader.h", |
| 62 "parser/XMLDocumentParser.cpp", | 61 "parser/XMLDocumentParser.cpp", |
| 63 "parser/XMLDocumentParser.h", | 62 "parser/XMLDocumentParser.h", |
| 64 "parser/XMLDocumentParserScope.cpp", | 63 "parser/XMLDocumentParserScope.cpp", |
| 65 "parser/XMLDocumentParserScope.h", | 64 "parser/XMLDocumentParserScope.h", |
| 66 "parser/XMLErrors.cpp", | 65 "parser/XMLErrors.cpp", |
| 67 "parser/XMLErrors.h", | 66 "parser/XMLErrors.h", |
| 68 "parser/XMLParserInput.h", | 67 "parser/XMLParserInput.h", |
| 69 ] | 68 ] |
| 70 | 69 |
| 71 configs += [ | 70 configs += [ |
| 72 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 71 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 73 "//build/config/compiler:no_size_t_to_int_warning", | 72 "//build/config/compiler:no_size_t_to_int_warning", |
| 74 ] | 73 ] |
| 75 } | 74 } |
| OLD | NEW |