OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 { |
| 5 'targets': [ |
| 6 { |
| 7 'target_name': 'blink_html_tokenizer', |
| 8 'type': 'static_library', |
| 9 'dependencies': [ |
| 10 '../../../base/base.gyp:base', |
| 11 ], |
| 12 'include_dirs': [ |
| 13 '../../..', |
| 14 ], |
| 15 'sources': [ |
| 16 'src/html_character_provider.h', |
| 17 'src/html_input_stream_preprocessor.h', |
| 18 'src/html_markup_tokenizer_inlines.h', |
| 19 'src/html_token.h', |
| 20 'src/html_token.mm', |
| 21 'src/html_tokenizer.h', |
| 22 'src/html_tokenizer.mm', |
| 23 'src/html_tokenizer_adapter.h', |
| 24 ], |
| 25 }, |
| 26 ], |
| 27 } |
OLD | NEW |