OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("html_tokenizer") { |
| 6 deps = [ |
| 7 "//base", |
| 8 ] |
| 9 |
| 10 sources = [ |
| 11 "src/html_character_provider.h", |
| 12 "src/html_input_stream_preprocessor.h", |
| 13 "src/html_markup_tokenizer_inlines.h", |
| 14 "src/html_token.h", |
| 15 "src/html_token.mm", |
| 16 "src/html_tokenizer.h", |
| 17 "src/html_tokenizer.mm", |
| 18 "src/html_tokenizer_adapter.h", |
| 19 ] |
| 20 } |
OLD | NEW |