Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 1780523003: Rename platform/fonts/CharacterData.h to avoid conflict with core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add TODO comment Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/blink_platform.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
8 import("//third_party/WebKit/Source/config.gni") 8 import("//third_party/WebKit/Source/config.gni")
9 import("//third_party/WebKit/Source/platform/platform.gni") 9 import("//third_party/WebKit/Source/platform/platform.gni")
10 import("//third_party/WebKit/Source/platform/platform_generated.gni") 10 import("//third_party/WebKit/Source/platform/platform_generated.gni")
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 rebase_path(color_data_gperf, root_build_dir), 138 rebase_path(color_data_gperf, root_build_dir),
139 "--output-file=" + rebase_path(output_file, root_build_dir), 139 "--output-file=" + rebase_path(output_file, root_build_dir),
140 ] 140 ]
141 } 141 }
142 142
143 action("character_data") { 143 action("character_data") {
144 script = "../build/scripts/gperf.py" 144 script = "../build/scripts/gperf.py"
145 deps = [ 145 deps = [
146 ":character_data_generator($host_toolchain)", 146 ":character_data_generator($host_toolchain)",
147 ] 147 ]
148 output_file = "$blink_platform_output_dir/CharacterData.cpp" 148 output_file = "$blink_platform_output_dir/CharacterPropertyData.cpp"
149 outputs = [ 149 outputs = [
150 output_file, 150 output_file,
151 ] 151 ]
152 152
153 # Find character_data_generator, which is generated in a different directory 153 # Find character_data_generator, which is generated in a different directory
154 # when cross-compile. 154 # when cross-compile.
155 generator = "./" + rebase_path( 155 generator = "./" + rebase_path(
156 get_label_info(":character_data_generator($host_toolchain)", 156 get_label_info(":character_data_generator($host_toolchain)",
157 "root_out_dir") + "/character_data_generator", 157 "root_out_dir") + "/character_data_generator",
158 root_build_dir) 158 root_build_dir)
159 args = [ 159 args = [
160 generator, 160 generator,
161 rebase_path(output_file, root_build_dir), 161 rebase_path(output_file, root_build_dir),
162 ] 162 ]
163 } 163 }
164 164
165 executable("character_data_generator") { 165 executable("character_data_generator") {
166 sources = [ 166 sources = [
167 "fonts/CharacterDataGenerator.cpp", 167 "fonts/CharacterPropertyDataGenerator.cpp",
168 "fonts/CharacterPropertyDataGenerator.h",
168 ] 169 ]
169 configs += [ "//third_party/WebKit/Source:config" ] 170 configs += [ "//third_party/WebKit/Source:config" ]
170 deps = [ 171 deps = [
171 "//build/config/sanitizers:deps", 172 "//build/config/sanitizers:deps",
172 "//third_party/icu", 173 "//third_party/icu",
173 ] 174 ]
174 } 175 }
175 176
176 # Inspector protocol 177 # Inspector protocol
177 178
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 } 590 }
590 591
591 if (current_cpu == "x86" || current_cpu == "x64") { 592 if (current_cpu == "x86" || current_cpu == "x64") {
592 source_set("blink_x86_sse") { 593 source_set("blink_x86_sse") {
593 sources = blink_platform_sse_files 594 sources = blink_platform_sse_files
594 deps = [ 595 deps = [
595 ":blink_common", 596 ":blink_common",
596 ] 597 ]
597 } 598 }
598 } 599 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/blink_platform.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698