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

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

Issue 1847853004: Move Character.h from platform/fonts to platform/text (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase again Created 4 years, 8 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
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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/CharacterPropertyDataGenerator.cpp", 167 "text/CharacterPropertyDataGenerator.cpp",
168 "fonts/CharacterPropertyDataGenerator.h", 168 "text/CharacterPropertyDataGenerator.h",
169 ] 169 ]
170 configs += [ "//third_party/WebKit/Source:config" ] 170 configs += [ "//third_party/WebKit/Source:config" ]
171 deps = [ 171 deps = [
172 "//build/config/sanitizers:deps", 172 "//build/config/sanitizers:deps",
173 "//third_party/icu", 173 "//third_party/icu",
174 ] 174 ]
175 } 175 }
176 176
177 # Inspector protocol 177 # Inspector protocol
178 178
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 } 593 }
594 594
595 if (current_cpu == "x86" || current_cpu == "x64") { 595 if (current_cpu == "x86" || current_cpu == "x64") {
596 source_set("blink_x86_sse") { 596 source_set("blink_x86_sse") {
597 sources = blink_platform_sse_files 597 sources = blink_platform_sse_files
598 deps = [ 598 deps = [
599 ":blink_common", 599 ":blink_common",
600 ] 600 ]
601 } 601 }
602 } 602 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698