From 7fa3690e341398f681128764be6b0b14f5a79a16 Mon Sep 17 00:00:00 2001 From: sdefresne Date: Tue, 20 Oct 2015 11:04:59 -0700 Subject: [iOS][gn] Port blink_html_tokenizer to build with gn. BUG=459705 Review URL: https://codereview.chromium.org/1386273006 Cr-Commit-Position: refs/heads/master@{#355103} --- ios/third_party/blink/BUILD.gn | 20 ++++++++++++++++++++ ios/third_party/blink/blink_html_tokenizer.gyp | 1 + 2 files changed, 21 insertions(+) create mode 100644 ios/third_party/blink/BUILD.gn (limited to 'ios') diff --git a/ios/third_party/blink/BUILD.gn b/ios/third_party/blink/BUILD.gn new file mode 100644 index 0000000..83e0e7a --- /dev/null +++ b/ios/third_party/blink/BUILD.gn @@ -0,0 +1,20 @@ +# Copyright 2015 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +source_set("html_tokenizer") { + deps = [ + "//base", + ] + + sources = [ + "src/html_character_provider.h", + "src/html_input_stream_preprocessor.h", + "src/html_markup_tokenizer_inlines.h", + "src/html_token.h", + "src/html_token.mm", + "src/html_tokenizer.h", + "src/html_tokenizer.mm", + "src/html_tokenizer_adapter.h", + ] +} diff --git a/ios/third_party/blink/blink_html_tokenizer.gyp b/ios/third_party/blink/blink_html_tokenizer.gyp index d6fbcf2..5548922 100644 --- a/ios/third_party/blink/blink_html_tokenizer.gyp +++ b/ios/third_party/blink/blink_html_tokenizer.gyp @@ -4,6 +4,7 @@ { 'targets': [ { + # GN version: //ios/third_party/blink:html_tokenizer 'target_name': 'blink_html_tokenizer', 'type': 'static_library', 'dependencies': [ -- cgit v1.1