Commit 81bec7b0 authored by Zhuoyu Qian's avatar Zhuoyu Qian Committed by Commit Bot

Move build/scripts/{ => core/css}/make_css_tokenizer_codepoints.py

This CL has no behavior changes.

Bug: 732657
Change-Id: I2d543eb78ad5900c8ad0e160a839dbd13be66a09
Reviewed-on: https://chromium-review.googlesource.com/c/1312182Reviewed-by: default avatarKent Tamura <tkent@chromium.org>
Commit-Queue: Zhuoyu Qian <zhuoyu.qian@samsung.com>
Cr-Commit-Position: refs/heads/master@{#604808}
parent e4d04462
...@@ -4,9 +4,11 @@ ...@@ -4,9 +4,11 @@
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
import in_generator
import sys
import os import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), '../..'))
import in_generator
module_basename = os.path.basename(__file__) module_basename = os.path.basename(__file__)
module_pyname = os.path.splitext(module_basename)[0] + '.py' module_pyname = os.path.splitext(module_basename)[0] + '.py'
......
...@@ -1415,15 +1415,15 @@ action("make_core_generated_html_entity_table") { ...@@ -1415,15 +1415,15 @@ action("make_core_generated_html_entity_table") {
action("make_core_generated_css_tokenizer_codepoints") { action("make_core_generated_css_tokenizer_codepoints") {
visibility = [] # Allow re-assignment of list. visibility = [] # Allow re-assignment of list.
visibility = [ ":*" ] visibility = [ ":*" ]
script = "../build/scripts/make_css_tokenizer_codepoints.py" script = "../build/scripts/core/css/make_css_tokenizer_codepoints.py"
outputs = [ outputs = [
"$blink_core_output_dir/css_tokenizer_codepoints.cc", "$blink_core_output_dir/css/css_tokenizer_codepoints.cc",
] ]
args = [ args = [
"--output_dir", "--output_dir",
rel_blink_core_gen_dir, "$rel_blink_core_gen_dir/css",
] ]
if (is_mac && !use_system_xcode) { if (is_mac && !use_system_xcode) {
args += [ args += [
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#include "third_party/blink/renderer/core/css/parser/css_tokenizer.h" #include "third_party/blink/renderer/core/css/parser/css_tokenizer.h"
namespace blink { namespace blink {
#include "third_party/blink/renderer/core/css_tokenizer_codepoints.cc" #include "third_party/blink/renderer/core/css/css_tokenizer_codepoints.cc"
} }
#include "third_party/blink/renderer/core/css/parser/css_parser_idioms.h" #include "third_party/blink/renderer/core/css/parser/css_parser_idioms.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment